OLD | NEW |
| (Empty) |
1 <refentry xmlns="http://docbook.org/ns/docbook" | |
2 xmlns:xlink="http://www.w3.org/1999/xlink" | |
3 xmlns:xi="http://www.w3.org/2001/XInclude" | |
4 xmlns:src="http://nwalsh.com/xmlns/litprog/fragment" | |
5 xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | |
6 version="5.0" xml:id="tex.math.in.alt"> | |
7 <refmeta> | |
8 <refentrytitle>tex.math.in.alt</refentrytitle> | |
9 <refmiscinfo class="other" otherclass="datatype">list</refmiscinfo> | |
10 <refmiscinfo class="other" otherclass="value">plain</refmiscinfo> | |
11 <refmiscinfo class="other" otherclass="value">latex</refmiscinfo> | |
12 </refmeta> | |
13 <refnamediv> | |
14 <refname>tex.math.in.alt</refname> | |
15 <refpurpose>TeX notation used for equations</refpurpose> | |
16 </refnamediv> | |
17 | |
18 <refsynopsisdiv> | |
19 <src:fragment xml:id="tex.math.in.alt.frag"> | |
20 <xsl:param name="tex.math.in.alt"></xsl:param> | |
21 </src:fragment> | |
22 </refsynopsisdiv> | |
23 | |
24 <refsection><info><title>Description</title></info> | |
25 | |
26 <para>If you want type math directly in TeX notation in equations, | |
27 this parameter specifies notation used. Currently are supported two | |
28 values -- <literal>plain</literal> and <literal>latex</literal>. Empty | |
29 value means that you are not using TeX math at all.</para> | |
30 | |
31 <para>Preferred way for including TeX alternative of math is inside of | |
32 <tag>textobject</tag> element. Eg.:</para> | |
33 | |
34 <programlisting><inlineequation> | |
35 <inlinemediaobject> | |
36 <imageobject> | |
37 <imagedata fileref="eq1.gif"/> | |
38 </imageobject> | |
39 <textobject><phrase>E=mc squared</phrase></textobject> | |
40 <textobject role="tex"><phrase>E=mc^2</phrase></textobject&
gt; | |
41 </inlinemediaobject> | |
42 </inlineequation></programlisting> | |
43 | |
44 <para>If you are using <tag>graphic</tag> element, you can | |
45 store TeX inside <tag>alt</tag> element:</para> | |
46 | |
47 <programlisting><inlineequation> | |
48 <alt role="tex">a^2+b^2=c^2</alt> | |
49 <graphic fileref="a2b2c2.gif"/> | |
50 </inlineequation></programlisting> | |
51 | |
52 <para>If you want use this feature, you should process your FO with | |
53 PassiveTeX, which only supports TeX math notation. When calling | |
54 stylsheet, don't forget to specify also | |
55 passivetex.extensions=1.</para> | |
56 | |
57 <para>If you want equations in HTML, just process generated file | |
58 <filename>tex-math-equations.tex</filename> by TeX or LaTeX. Then run | |
59 dvi2bitmap program on result DVI file. You will get images for | |
60 equations in your document.</para> | |
61 | |
62 <warning> | |
63 <para>This feature is useful for print/PDF output only if you | |
64 use the obsolete and now unsupported PassiveTeX XSL-FO | |
65 engine.</para> | |
66 </warning> | |
67 | |
68 </refsection> | |
69 | |
70 <refsection><info><title>Related Parameters</title></info> | |
71 <para><parameter>tex.math.delims</parameter>, | |
72 <parameter>passivetex.extensions</parameter>, | |
73 <parameter>tex.math.file</parameter></para> | |
74 </refsection> | |
75 | |
76 </refentry> | |
OLD | NEW |