source: pst/typesetting/jadetex.xml@ 0b5a693

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 0b5a693 was 0b5a693, checked in by Randy McMurchy <randy@…>, 19 years ago

Final round of renaming the package-name entities

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

  • Property mode set to 100644
File size: 6.8 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<indexterm zone="jadetex">
22<primary sortas="a-JadeTeX">JadeTeX</primary></indexterm>
23
24<sect2>
25<title>Introduction to <application>JadeTeX</application></title>
26
27<para>The <application>JadeTeX</application> package is a companion package to
28the <application>OpenJade</application> <acronym>DSSSL</acronym> processor.
29<application>JadeTeX</application> transforms high level LaTeX macros into
30<acronym>DVI</acronym>/PostScript and Portable Document Format
31(<acronym>PDF</acronym>) forms.</para>
32
33<sect3><title>Package information</title>
34<itemizedlist spacing='compact'>
35<listitem><para>Download (HTTP):
36<ulink url="&jadetex-download-http;"/></para></listitem>
37<listitem><para>Download (FTP):
38<ulink url="&jadetex-download-ftp;"/></para></listitem>
39<listitem><para>Download size: &jadetex-size;</para></listitem>
40<listitem><para>Estimated disk space required:
41&jadetex-buildsize;</para></listitem>
42<listitem><para>Estimated build time:
43&jadetex-time;</para></listitem></itemizedlist>
44</sect3>
45
46<sect3><title><application>JadeTeX</application> dependencies</title>
47<sect4><title>Required</title>
48<para><xref linkend="tex"/> and
49<xref linkend="openjade"/></para>
50</sect4>
51</sect3>
52
53</sect2>
54
55<sect2>
56<title>Installation of <application>JadeTeX</application></title>
57
58<para>Install <application>JadeTex</application> by running the following
59commands:</para>
60
61<screen><userinput><command>sed -i.orig -e "s/original texmf.cnf/modified texmf.cnf/" \
62 /usr/share/texmf/web2c/texmf.cnf</command></userinput></screen>
63
64<para>You'll need to make two modifications to
65<filename>/usr/share/texmf/web2c/texmf.cnf</filename>. First, add the
66following line under the section titled <quote>ConTeXt is a memory
67hog...</quote>:</para>
68
69<screen><userinput>pool_size.context = 750000</userinput></screen>
70
71<para>Next, add <command>latex</command>, <command>jadetex</command> and
72<command>pdfjadetex</command> settings using the following command:</para>
73
74<screen><userinput><command>cat &gt;&gt; /usr/share/texmf/web2c/texmf.cnf &lt;&lt; "EOF"</command>
75
76% The following 3 sections added for JadeTeX
77
78% latex settings
79main_memory.latex = 1100000
80param_size.latex = 1500
81stack_size.latex = 1500
82hash_extra.latex = 15000
83string_vacancies.latex = 45000
84pool_free.latex = 47500
85nest_size.latex = 500
86save_size.latex = 5000
87pool_size.latex = 500000
88max_strings.latex = 55000
89font_mem_size.latex= 400000
90
91% jadetex settings
92main_memory.jadetex = 1500000
93param_size.jadetex = 1500
94stack_size.jadetex = 1500
95hash_extra.jadetex = 50000
96string_vacancies.jadetex = 45000
97pool_free.jadetex = 47500
98nest_size.jadetex = 500
99save_size.jadetex = 5000
100pool_size.jadetex = 500000
101max_strings.jadetex = 55000
102
103% pdfjadetex settings
104main_memory.pdfjadetex = 2500000
105param_size.pdfjadetex = 1500
106stack_size.pdfjadetex = 1500
107hash_extra.pdfjadetex = 50000
108string_vacancies.pdfjadetex = 45000
109pool_free.pdfjadetex = 47500
110nest_size.pdfjadetex = 500
111save_size.pdfjadetex = 5000
112pool_size.pdfjadetex = 500000
113max_strings.pdfjadetex = 55000
114<command>EOF</command></userinput></screen>
115
116<para>Rebuild and install a new <filename>latex.fmt</filename> file using the
117following commands:</para>
118
119<screen><userinput><command>cp -R /usr/share/texmf/tex/latex/config . &amp;&amp;
120cd config &amp;&amp;
121tex -ini -progname=latex latex.ini &amp;&amp;
122mv /usr/share/texmf/web2c/latex.fmt \
123 /usr/share/texmf/web2c/latex.fmt.orig &amp;&amp;
124install -m 644 latex.fmt /usr/share/texmf/web2c &amp;&amp;
125cd ..</command></userinput></screen>
126
127<para>Finally, build and install <application>JadeTex</application> using the
128following commands:</para>
129
130<screen><userinput><command>make install &amp;&amp;
131ln -sf tex /usr/bin/jadetex &amp;&amp;
132ln -sf pdftex /usr/bin/pdfjadetex &amp;&amp;
133mktexlsr</command></userinput></screen>
134
135</sect2>
136
137<sect2>
138<title>Command explanations</title>
139
140<para><command>sed -i -e "s/original texmf.cnf/modified texmf.cnf/"</command>:
141This changes <filename>/usr/share/texmf/web2c/texmf.cnf</filename> so that if
142<application>TeX</application> is upgraded, this file won't get
143overwritten.</para>
144
145<para><command>ln -sf tex ...; ln -sf pdftex ...; mktexlsr</command>: The
146<application>JadeTeX</application> programs are actually just symlinks to the
147<application>TeX</application> programs. <command>mktexlsr</command> updates
148<application>TeX</application>'s <filename>ls-R</filename> database used by
149the <filename class='libraryfile'>libkpathsea</filename> library so that
150<application>TeX</application> knows to use the
151<application>JadeTeX</application> <filename>.fmt</filename> files when
152<command>jadetex</command> or <command>pdfjadetex</command> is called.</para>
153
154</sect2>
155
156<sect2>
157<title>Configuring <application>JadeTeX</application></title>
158
159<sect3><title>Config files</title>
160<para><filename>jadetex.dtx</filename> in the
161<application>JadeTeX</application> source tree.</para>
162</sect3>
163
164<sect3><title>Configuration Information</title>
165
166<para>If you need to modify the default <application>JadeTeX</application>
167macro settings, see the <ulink
168url="http://jadetex.sourceforge.net/#index-div-d18e397">
169<application>JadeTeX</application> <acronym>FAQ</acronym></ulink>.</para>
170</sect3>
171
172</sect2>
173
174<sect2>
175<title>Contents</title>
176
177<segmentedlist>
178<segtitle>Installed Programs</segtitle>
179<seglistitem>
180<seg>jadetex and pdfjadetex</seg>
181</seglistitem>
182</segmentedlist>
183
184<variablelist>
185<bridgehead renderas="sect3">Short Descriptions</bridgehead>
186<?dbfo list-presentation="list"?>
187
188<varlistentry id="jadetex-prog">
189<term><command>jadetex</command></term>
190<listitem><para>transforms LaTeX macros created by
191<application>OpenJade</application> into <acronym>DVI</acronym>/PostScript
192forms.</para>
193<indexterm zone="jadetex jadetex-prog">
194<primary sortas="b-jadetex">jadetex</primary></indexterm>
195</listitem>
196</varlistentry>
197
198<varlistentry id="pdfjadetex">
199<term><command>pdfjadetex</command></term>
200<listitem><para>transforms LaTeX macros created by
201<application>OpenJade</application> into Portable Document Format
202(<acronym>PDF</acronym>) forms.</para>
203<indexterm zone="jadetex pdfjadetex">
204<primary sortas="b-pdfjadetex">pdfjadetex</primary></indexterm>
205</listitem>
206</varlistentry>
207</variablelist>
208
209</sect2>
210
211</sect1>
212
Note: See TracBrowser for help on using the repository browser.