summaryrefslogtreecommitdiffstats
path: root/source-builder/sb/asciidoc/doc/latexmath.txt
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2017-08-07 09:59:49 +1000
committerChris Johns <chrisj@rtems.org>2017-08-07 09:59:49 +1000
commit8b96e17c8abf61d97dd224b23370dc148f32fe3c (patch)
treee8eb043159d145ffbbbf9c23ef872226de5ab059 /source-builder/sb/asciidoc/doc/latexmath.txt
parent4.12: Fix SIS patch URL (diff)
downloadrtems-source-builder-8b96e17c8abf61d97dd224b23370dc148f32fe3c.tar.bz2
doc: Remove in source documentation and the asciidoc package
The RSB documentation is now in ReST format and part of the RTEMS Documentation project. See https://docs.rtems.org/. Remove support for the GPL based asciidoc tool and remove the asciidoc package from the RSB. Add the Python Markdown package and update the reporter to use Markdown for HTML generation. The resuling HTML report is a single self contained file. Closes #3047.
Diffstat (limited to 'source-builder/sb/asciidoc/doc/latexmath.txt')
-rw-r--r--source-builder/sb/asciidoc/doc/latexmath.txt121
1 files changed, 0 insertions, 121 deletions
diff --git a/source-builder/sb/asciidoc/doc/latexmath.txt b/source-builder/sb/asciidoc/doc/latexmath.txt
deleted file mode 100644
index 6f04321..0000000
--- a/source-builder/sb/asciidoc/doc/latexmath.txt
+++ /dev/null
@@ -1,121 +0,0 @@
-Embedding LaTeX Math in AsciiDoc dblatex documents
-==================================================
-
-You can include LaTeX math equations in AsciiDoc documents that are
-processed by http://dblatex.sourceforge.net/[dblatex]. The AsciiDoc
-'latexmath' macros and passthrough blocks generate DocBook
-'inlineequation', 'informalequation' and 'equation' elements
-containing the LaTeX markup which is processed by 'dblatex'.
-
-
-Inline equations
-----------------
-This markup:
-
----------------------------------------------------------------------
-An inline equation latexmath:[$C = \alpha + \beta Y^{\gamma} + \epsilon$]
-using the 'latexmath' inline macro.
----------------------------------------------------------------------
-
-Renders:
-
-An inline equation latexmath:[$C = \alpha + \beta Y^{\gamma} + \epsilon$]
-using the 'latexmath' inline macro.
-
-
-Informal equations
-------------------
-Informal (untitled) equations are generated with a 'latexmath' style
-passthrough delimited block. This markup:
-
----------------------------------------------------------------------
-[latexmath]
-++++++++++++++++++++++++++++++++++++++++++++
-\[C = \alpha + \beta Y^{\gamma} + \epsilon\]
-++++++++++++++++++++++++++++++++++++++++++++
----------------------------------------------------------------------
-
-Renders:
-
-[latexmath]
-++++++++++++++++++++++++++++++++++++++++++++
-\[C = \alpha + \beta Y^{\gamma} + \epsilon\]
-++++++++++++++++++++++++++++++++++++++++++++
-
-Functionally identical block macro syntax:
-
----------------------------------------------------------------------
-latexmath::[\[C = \alpha + \beta Y^{\gamma} + \epsilon\]]
----------------------------------------------------------------------
-
-Renders:
-
-latexmath::[\[C = \alpha + \beta Y^{\gamma} + \epsilon\]]
-
-
-Formal equations
-----------------
-Formal equations are titled and are generated with a 'latexmath' style
-passthrough delimited block.
-
-This markup:
-
----------------------------------------------------------------------
-.First equation
-[latexmath]
-++++++++++++++++++++++++++++++++++++++++++++
-\[C = \alpha + \beta Y^{\gamma} + \epsilon\]
-++++++++++++++++++++++++++++++++++++++++++++
----------------------------------------------------------------------
-
-Renders:
-
-.First equation
-[latexmath]
-++++++++++++++++++++++++++++++++++++++++++++
-\[C = \alpha + \beta Y^{\gamma} + \epsilon\]
-++++++++++++++++++++++++++++++++++++++++++++
-
-This markup:
-
----------------------------------------------------------------------
-.Matrix
-[latexmath]
-++++++++++++++++++++++++++++++++++++++++++++
-\[ 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] \]
-++++++++++++++++++++++++++++++++++++++++++++
----------------------------------------------------------------------
-
-Renders:
-
-.Matrix
-[latexmath]
-++++++++++++++++++++++++++++++++++++++++++++
-\[ 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] \]
-++++++++++++++++++++++++++++++++++++++++++++
-
-