summaryrefslogtreecommitdiff
path: root/latexmath.html
diff options
context:
space:
mode:
Diffstat (limited to 'latexmath.html')
-rw-r--r--latexmath.html183
1 files changed, 0 insertions, 183 deletions
diff --git a/latexmath.html b/latexmath.html
deleted file mode 100644
index 95d5516..0000000
--- a/latexmath.html
+++ /dev/null
@@ -1,183 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
- "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
-<meta name="generator" content="AsciiDoc 10.0.0a2" />
-<title>Embedding LaTeX Math in AsciiDoc dblatex documents</title>
-<link rel="stylesheet" href="./asciidoc.css" type="text/css" />
-<link rel="stylesheet" href="./layout2.css" type="text/css" />
-<script type="text/javascript" src="./asciidoc.js"></script>
-<script type="text/javascript">
-/*<![CDATA[*/
-asciidoc.install();
-/*]]>*/
-</script>
-<script type="text/javascript" src="./LaTeXMathML.js"></script>
-</head>
-<body style="max-width:70em">
-<div id="layout-menu-box">
-<div id="layout-menu">
- <div>&#187;<a href="index.html">Home</a></div>
- <div>&#187;<a href="userguide.html">User&nbsp;Guide</a></div>
- <div>&#187;<a href="INSTALL.html">Installation</a></div>
- <div>&#187;<a href="faq.html">FAQ</a></div>
- <div>&#187;<a href="manpage.html">asciidoc(1)</a></div>
- <div>&#187;<a href="a2x.1.html">a2x(1)</a></div>
- <div>&#187;<a href="asciidocapi.html">API</a></div>
- <div>&#187;<a href="plugins.html">Plugins</a></div>
- <div>&#187;<a href="http://powerman.name/doc/asciidoc">Cheatsheet</a></div>
- <div>&#187;<a href="testasciidoc.html">Tests</a></div>
- <div>&#187;<a href="CHANGELOG.html">ChangeLog</a></div>
- <div>&#187;<a href="support.html">Support</a></div>
- <div id="page-source">&#187;<a href="latexmath.txt">Page&nbsp;Source</a></div>
-</div>
-</div>
-<div id="layout-content-box">
-<div id="layout-banner">
- <div id="layout-title">AsciiDoc</div>
- <div id="layout-description">Text based document generation</div>
-</div>
-<div id="layout-content">
-<div id="header">
-<h1>Embedding LaTeX Math in AsciiDoc dblatex documents</h1>
-</div>
-<div id="content">
-<div id="preamble">
-<div class="sectionbody">
-<div class="paragraph"><p>You can include LaTeX math equations in AsciiDoc documents that are
-processed by <a href="http://dblatex.sourceforge.net/">dblatex</a>. The AsciiDoc
-<em>latexmath</em> macros and passthrough blocks generate DocBook
-<em>inlineequation</em>, <em>informalequation</em> and <em>equation</em> elements
-containing the LaTeX markup which is processed by <em>dblatex</em>.</p></div>
-</div>
-</div>
-<div class="sect1">
-<h2 id="_inline_equations">Inline equations</h2>
-<div class="sectionbody">
-<div class="paragraph"><p>This markup:</p></div>
-<div class="listingblock">
-<div class="content">
-<pre><code>An inline equation latexmath:[$C = \alpha + \beta Y^{\gamma} + \epsilon$]
-using the 'latexmath' inline macro.</code></pre>
-</div></div>
-<div class="paragraph"><p>Renders:</p></div>
-<div class="paragraph"><p>An inline equation $C = \alpha + \beta Y^{\gamma} + \epsilon$
-using the <em>latexmath</em> inline macro.</p></div>
-</div>
-</div>
-<div class="sect1">
-<h2 id="_informal_equations">Informal equations</h2>
-<div class="sectionbody">
-<div class="paragraph"><p>Informal (untitled) equations are generated with a <em>latexmath</em> style
-passthrough delimited block. This markup:</p></div>
-<div class="listingblock">
-<div class="content">
-<pre><code>[latexmath]
-++++++++++++++++++++++++++++++++++++++++++++
-\[C = \alpha + \beta Y^{\gamma} + \epsilon\]
-++++++++++++++++++++++++++++++++++++++++++++</code></pre>
-</div></div>
-<div class="paragraph"><p>Renders:</p></div>
-<div class="mathblock">
-<div class="content">
-\[C = \alpha + \beta Y^{\gamma} + \epsilon\]
-</div></div>
-<div class="paragraph"><p>Functionally identical block macro syntax:</p></div>
-<div class="listingblock">
-<div class="content">
-<pre><code>latexmath::[\[C = \alpha + \beta Y^{\gamma} + \epsilon\]]</code></pre>
-</div></div>
-<div class="paragraph"><p>Renders:</p></div>
-<div class="mathblock">
-<div class="content">
-\[C = \alpha + \beta Y^{\gamma} + \epsilon\]
-</div></div>
-</div>
-</div>
-<div class="sect1">
-<h2 id="_formal_equations">Formal equations</h2>
-<div class="sectionbody">
-<div class="paragraph"><p>Formal equations are titled and are generated with a <em>latexmath</em> style
-passthrough delimited block.</p></div>
-<div class="paragraph"><p>This markup:</p></div>
-<div class="listingblock">
-<div class="content">
-<pre><code>.First equation
-[latexmath]
-++++++++++++++++++++++++++++++++++++++++++++
-\[C = \alpha + \beta Y^{\gamma} + \epsilon\]
-++++++++++++++++++++++++++++++++++++++++++++</code></pre>
-</div></div>
-<div class="paragraph"><p>Renders:</p></div>
-<div class="mathblock">
-<div class="content">
-<div class="title">First equation</div>
-\[C = \alpha + \beta Y^{\gamma} + \epsilon\]
-</div></div>
-<div class="paragraph"><p>This markup:</p></div>
-<div class="listingblock">
-<div class="content">
-<pre><code>.Matrix
-[latexmath]
-++++++++++++++++++++++++++++++++++++++++++++
-\[ P^{e \rightarrow c}= \left[
- \begin{array}{*{3}{r@{}l}}
- &amp; \cos \theta &amp; &amp; \sin \theta \sin \varphi &amp; &amp; \sin \theta \cos \varphi\\
-
- &amp; \sin \theta \sin \psi
- &amp; &amp; \cos \varphi \cos \psi - \cos \theta \sin \varphi \sin \psi
- &amp; - &amp; \sin \varphi \cos \psi - \cos \theta \cos \varphi \sin \psi\\
-
- - &amp; \sin \theta \cos \psi
- &amp; &amp; \cos \varphi \sin \psi + \cos \theta \sin \varphi \cos \psi
- &amp; - &amp; \sin \varphi \sin \psi + \cos \theta \cos \varphi \cos \psi\\
- \end{array}
-\right] \]
-++++++++++++++++++++++++++++++++++++++++++++</code></pre>
-</div></div>
-<div class="paragraph"><p>Renders:</p></div>
-<div class="mathblock">
-<div class="content">
-<div class="title">Matrix</div>
-\[P^{e \rightarrow c}= \left[
- \begin{array}{*{3}{r@{}l}}
- & \cos \theta & & \sin \theta \sin \varphi & & \sin \theta \cos \varphi\\
-
- & \sin \theta \sin \psi
- & & \cos \varphi \cos \psi - \cos \theta \sin \varphi \sin \psi
- & - & \sin \varphi \cos \psi - \cos \theta \cos \varphi \sin \psi\\
-
- - & \sin \theta \cos \psi
- & & \cos \varphi \sin \psi + \cos \theta \sin \varphi \cos \psi
- & - & \sin \varphi \sin \psi + \cos \theta \cos \varphi \cos \psi\\
- \end{array}
-\right]\]
-</div></div>
-</div>
-</div>
-</div>
-<div id="footnotes"><hr /></div>
-<div id="footer">
-<div id="footer-text">
-Version 9.1.0<br />
-Last updated 2021-09-19 06:37:13 UTC<br />
-AsciiDoc is a trademark of the Eclipse Foundation, Inc.
-</div>
-<div id="footer-badges">
-<a href="https://validator.w3.org/check?uri=referer">
- <img style="border:0;width:88px;height:31px"
- src="https://www.w3.org/Icons/valid-xhtml11-blue"
- alt="Valid XHTML 1.1" height="31" width="88" />
-</a>
-<a href="https://jigsaw.w3.org/css-validator/">
- <img style="border:0;width:88px;height:31px"
- src="https://jigsaw.w3.org/css-validator/images/vcss-blue"
- alt="Valid CSS!" />
-</a>
-</div>
-</div>
-</div>
-</div>
-</body>
-</html>