source: pst/typesetting/jadetex.xml@ 20cdff5

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 6.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 20cdff5 was 03d51788, checked in by Randy McMurchy <randy@…>, 19 years ago

Added index tags to TeX

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@3252 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 6.4 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
3 "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY jadetex-download-http "http://prdownloads.sourceforge.net/jadetex/jadetex-&jadetex-version;.tar.gz?download">
8 <!ENTITY jadetex-download-ftp " ">
9 <!ENTITY jadetex-size "103 KB">
10 <!ENTITY jadetex-buildsize "9.6 MB">
11 <!ENTITY jadetex-time ".11 SBU">
12]>
13
14<sect1 id="jadetex" xreflabel="JadeTeX-&jadetex-version;">
15<sect1info>
16<othername>$LastChangedBy$</othername>
17<date>$Date$</date>
18</sect1info>
19<?dbhtml filename="jadetex.html"?>
20<title>JadeTeX-&jadetex-version;</title>
21
22<sect2>
23<title>Introduction to <application>JadeTeX</application></title>
24
25<para>The <application>JadeTeX</application> package is a companion package to
26the <application>OpenJade</application> <acronym>DSSSL</acronym> processor.
27<application>JadeTeX</application> transforms high level LaTeX macros into
28<acronym>DVI</acronym>/PostScript and Portable Document Format
29(<acronym>PDF</acronym>) forms.</para>
30
31<sect3><title>Package information</title>
32<itemizedlist spacing='compact'>
33<listitem><para>Download (HTTP):
34<ulink url="&jadetex-download-http;"/></para></listitem>
35<listitem><para>Download (FTP):
36<ulink url="&jadetex-download-ftp;"/></para></listitem>
37<listitem><para>Download size: &jadetex-size;</para></listitem>
38<listitem><para>Estimated disk space required:
39&jadetex-buildsize;</para></listitem>
40<listitem><para>Estimated build time:
41&jadetex-time;</para></listitem></itemizedlist>
42</sect3>
43
44<sect3><title><application>JadeTeX</application> dependencies</title>
45<sect4><title>Required</title>
46<para><xref linkend="tex"/> and
47<xref linkend="openjade"/></para>
48</sect4>
49</sect3>
50
51</sect2>
52
53<sect2>
54<title>Installation of <application>JadeTeX</application></title>
55
56<para>Install <application>JadeTex</application> by running the following
57commands:</para>
58
59<screen><userinput><command>sed -i.orig -e "s/original texmf.cnf/modified texmf.cnf/" \
60 /usr/share/texmf/web2c/texmf.cnf</command></userinput></screen>
61
62<para>You'll need to make two modifications to
63<filename>/usr/share/texmf/web2c/texmf.cnf</filename>. First, add the
64following line under the section titled <quote>ConTeXt is a memory
65hog...</quote>:</para>
66
67<screen><userinput>pool_size.context = 750000</userinput></screen>
68
69<para>Next, add <command>latex</command>, <command>jadetex</command> and
70<command>pdfjadetex</command> settings using the following command:</para>
71
72<screen><userinput><command>cat &gt;&gt; /usr/share/texmf/web2c/texmf.cnf &lt;&lt; "EOF"</command>
73
74% The following 3 sections added for JadeTeX
75
76% latex settings
77main_memory.latex = 1100000
78param_size.latex = 1500
79stack_size.latex = 1500
80hash_extra.latex = 15000
81string_vacancies.latex = 45000
82pool_free.latex = 47500
83nest_size.latex = 500
84save_size.latex = 5000
85pool_size.latex = 500000
86max_strings.latex = 55000
87font_mem_size.latex= 400000
88
89% jadetex settings
90main_memory.jadetex = 1500000
91param_size.jadetex = 1500
92stack_size.jadetex = 1500
93hash_extra.jadetex = 50000
94string_vacancies.jadetex = 45000
95pool_free.jadetex = 47500
96nest_size.jadetex = 500
97save_size.jadetex = 5000
98pool_size.jadetex = 500000
99max_strings.jadetex = 55000
100
101% pdfjadetex settings
102main_memory.pdfjadetex = 2500000
103param_size.pdfjadetex = 1500
104stack_size.pdfjadetex = 1500
105hash_extra.pdfjadetex = 50000
106string_vacancies.pdfjadetex = 45000
107pool_free.pdfjadetex = 47500
108nest_size.pdfjadetex = 500
109save_size.pdfjadetex = 5000
110pool_size.pdfjadetex = 500000
111max_strings.pdfjadetex = 55000
112<command>EOF</command></userinput></screen>
113
114<para>Rebuild and install a new <filename>latex.fmt</filename> file using the
115following commands:</para>
116
117<screen><userinput><command>cp -R /usr/share/texmf/tex/latex/config . &amp;&amp;
118cd config &amp;&amp;
119tex -ini -progname=latex latex.ini &amp;&amp;
120mv /usr/share/texmf/web2c/latex.fmt \
121 /usr/share/texmf/web2c/latex.fmt.orig &amp;&amp;
122install -m 644 latex.fmt /usr/share/texmf/web2c &amp;&amp;
123cd ..</command></userinput></screen>
124
125<para>Finally, build and install <application>JadeTex</application> using the
126following commands:</para>
127
128<screen><userinput><command>make install &amp;&amp;
129ln -sf tex /usr/bin/jadetex &amp;&amp;
130ln -sf pdftex /usr/bin/pdfjadetex &amp;&amp;
131mktexlsr</command></userinput></screen>
132
133</sect2>
134
135<sect2>
136<title>Command explanations</title>
137
138<para><command>sed -i -e "s/original texmf.cnf/modified texmf.cnf/"</command>:
139This changes <filename>/usr/share/texmf/web2c/texmf.cnf</filename> so that if
140<application>TeX</application> is upgraded, this file won't get
141overwritten.</para>
142
143<para><command>ln -sf tex ...; ln -sf pdftex ...; mktexlsr</command>: The
144<application>JadeTeX</application> programs are actually just symlinks to the
145<application>TeX</application> programs. <command>mktexlsr</command> updates
146<application>TeX</application>'s <filename>ls-R</filename> database used by
147the <filename class='libraryfile'>libkpathsea</filename> library so that
148<application>TeX</application> knows to use the
149<application>JadeTeX</application> <filename>.fmt</filename> files when
150<command>jadetex</command> or <command>pdfjadetex</command> is called.</para>
151
152</sect2>
153
154<sect2>
155<title>Configuring <application>JadeTeX</application></title>
156
157<sect3><title>Config files</title>
158<para><filename>jadetex.dtx</filename> in the
159<application>JadeTeX</application> source tree.</para>
160</sect3>
161
162<sect3><title>Configuration Information</title>
163
164<para>If you need to modify the default <application>JadeTeX</application>
165macro settings, see the <ulink
166url="http://jadetex.sourceforge.net/#index-div-d18e397">
167<application>JadeTeX</application> <acronym>FAQ</acronym></ulink>.</para>
168</sect3>
169
170</sect2>
171
172<sect2>
173<title>Contents</title>
174
175<para>The <application>JadeTex</application> package contains
176<command>jadetex</command> and <command>pdfjadetex</command>.</para>
177
178</sect2>
179
180<sect2><title>Description</title>
181
182<sect3><title>jadetex</title>
183<para><command>jadetex</command> transforms LaTeX macros created by
184<application>OpenJade</application> into <acronym>DVI</acronym>/PostScript
185forms.</para></sect3>
186
187<sect3><title>pdfjadetex</title>
188<para><command>pdfjadetex</command> transforms LaTeX macros created by
189<application>OpenJade</application> into Portable Document Format
190(<acronym>PDF</acronym>) forms.</para></sect3>
191
192</sect2>
193
194</sect1>
195
Note: See TracBrowser for help on using the repository browser.