XML update for Chapter 45

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@2322 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
Bruce Dubbs 2004-06-14 05:25:53 +00:00
parent 44b376e706
commit 959f94456c
9 changed files with 629 additions and 31 deletions

View File

@ -344,7 +344,11 @@
<!ENTITY docbook-xsl-version "1.65.1">
<!-- Chapter 45 -->
<!ENTITY a2ps-version "4.13b">
<!ENTITY enscript-version "1.6.1">
<!ENTITY psutils-version "p17">
<!ENTITY gsview-version "4.6">
<!ENTITY xpdf-version "3.00">
<!-- Chapter 46 -->

View File

@ -1,11 +1,144 @@
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
"http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
<!ENTITY % general-entities SYSTEM "../../general.ent">
%general-entities;
<!ENTITY a2ps-download-http "http://ftp.gnu.org/gnu/a2ps/a2ps-&a2ps-version;.tar.gz">
<!ENTITY a2ps-download-ftp "ftp://ftp.gnu.org/gnu/a2ps/a2ps-&a2ps-version;.tar.gz">
<!ENTITY a2ps-size "1.9 MB">
<!ENTITY a2ps-buildsize "19.2 MB">
<!ENTITY a2ps-time "0.26 SBU">
]>
<sect1 id="a2ps" xreflabel="a2ps-&a2ps-version;">
<?dbhtml filename="a2ps.html"?>
<title>a2ps-&a2ps-version;</title>
&a2ps-intro;
&a2ps-inst;
&a2ps-exp;
&a2ps-config;
&a2ps-desc;
<sect2>
<title>Introduction to <application>a2ps</application></title>
<para><application>a2ps</application> is a filter utilitized mainly in the
background and primarily by printing scripts to convert almost
every input format into PostScript output. The application's name expands
appropriately to "all to PostScript".</para>
<sect3><title>Package information</title>
<itemizedlist spacing='compact'>
<listitem><para>Download (HTTP): <ulink
url="&a2ps-download-http;"/></para></listitem>
<listitem><para>Download (FTP): <ulink
url="&a2ps-download-ftp;"/></para></listitem>
<listitem><para>Download size: &a2ps-size;</para></listitem>
<listitem><para>Estimated Disk space required:
&a2ps-buildsize;</para></listitem>
<listitem><para>Estimated build time:
&a2ps-time;</para></listitem></itemizedlist>
</sect3>
<sect3><title>Additional downloads</title>
<itemizedlist spacing='compact'>
<listitem><para>International fonts: <ulink
url="ftp://ftp.enst.fr/pub/unix/a2ps/i18n-fonts-0.1.tar.gz"/>
</para></listitem></itemizedlist>
</sect3>
<sect3><title><application>a2ps</application> dependencies</title>
<sect4><title>Optional</title>
<para><xref linkend="psutils"/> and
<xref linkend="gs"/> or <xref linkend="espgs"/>
</para></sect4>
</sect3>
</sect2>
<sect2>
<title>Installation of <application>a2ps</application></title>
<para>Install <application>a2ps</application> by running the following commands:
</para>
<screen><userinput><command>cd contrib &amp;&amp;
cp Makefile.in Makefile.in.orig &amp;&amp;
sed -e "s:emacs::" Makefile.in.orig > Makefile.in &amp;&amp;
cd .. &amp;&amp;
cp configure{,.orig} &amp;&amp;
sed -e 's|/usr/local/share/ghostscript|/usr/share/ghostscript|g' \
configure.orig > configure &amp;&amp;
./configure --prefix=/usr \
--sysconfdir=/etc/a2ps --localstatedir=/var \
--with-medium=letter &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen>
</sect2>
<sect2>
<title>Command explanations</title>
<para><screen><command>cd contrib &amp;&amp;
cp Makefile.in Makefile.in.orig &amp;&amp;
sed -e "s:emacs::" Makefile.in.orig > Makefile.in &amp;&amp;
cd .. &amp;&amp;</command></screen>
These commands eliminate the compiling and installing of the
<application>Emacs</application> script files. If you have substituted
<application>Emacs</application> for <application>Vi</application> as your
primary editor, you would want to skip these instructions.</para>
<para><screen><command>cp configure{,.orig} &amp;&amp;
sed -e 's|/usr/local/share/ghostscript|/usr/share/ghostscript|g' \
configure.orig > configure</command></screen>
This command modifies the configure script to search for
<application>Ghostscript</application> fonts
at the location where they were installed by the <acronym>BLFS</acronym>
instructions.</para>
<para><parameter>--sysconfdir=/etc/a2ps</parameter>: Configuration data
goes to <filename class="directory">/etc/a2ps</filename> instead of
<filename class="directory">/usr/etc</filename>.</para>
<para><parameter>--with-medium=letter</parameter>: This switch changes
the default paper format of A4 to letter. Installations that utilize A4
would eliminate this switch.</para>
</sect2>
<sect2>
<title>Configuring <application>a2ps</application></title>
<sect3><title>Config files</title>
<para><filename>/etc/a2ps/a2ps.cfg</filename>, <filename>/etc/a2ps/a2ps-site.cfg</filename></para>
</sect3>
<sect3><title>Configuration Information</title>
<para>Information about configuring <application>a2ps</application> can be
found in the comments contained in the above files, and also by
running <command>info a2ps</command>.</para>
</sect3>
</sect2>
<sect2>
<title>Contents</title>
<para>The <application>a2ps</application> package
contains <command>a2ps</command> and filter data.</para>
</sect2>
<sect2><title>Description</title>
<sect3><title>a2ps</title>
<para><command>a2ps</command> is a filter, utilized primarily by
printing scripts, that converts standard input or supported files
to PostScript.</para>
</sect3>
</sect2>
</sect1>

View File

@ -1,10 +1,84 @@
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
"http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
<!ENTITY % general-entities SYSTEM "../../general.ent">
%general-entities;
<!ENTITY enscript-download-http "http://ftp.gnu.org/gnu/enscript/enscript-&enscript-version;.tar.gz">
<!ENTITY enscript-download-ftp "ftp://ftp.gnu.org/gnu/enscript/enscript-&enscript-version;.tar.gz">
<!ENTITY enscript-size "631 KB">
<!ENTITY enscript-buildsize "6.8 MB">
<!ENTITY enscript-time "0.10 SBU">
]>
<sect1 id="enscript" xreflabel="enscript-&enscript-version;">
<?dbhtml filename="enscript.html"?>
<title>enscript-&enscript-version;</title>
&enscript-intro;
&enscript-inst;
&enscript-exp;
&enscript-desc;
<sect2>
<title>Introduction to <application>enscript</application></title>
<para><application>Enscript</application> converts ASCII files to PostScript.</para>
<sect3><title>Package information</title>
<itemizedlist spacing='compact'>
<listitem><para>Download (HTTP): <ulink
url="&enscript-download-http;"/></para></listitem>
<listitem><para>Download (FTP): <ulink
url="&enscript-download-ftp;"/></para></listitem>
<listitem><para>Download size: &enscript-size;</para></listitem>
<listitem><para>Estimated Disk space required:
&enscript-buildsize;</para></listitem>
<listitem><para>Estimated build time:
&enscript-time;</para></listitem></itemizedlist>
</sect3>
</sect2>
<sect2>
<title>Installation of enscript</title>
<para>Install enscript by running the following commands:</para>
<screen><userinput><command>./configure --prefix=/usr --sysconfdir=/etc/enscript \
--localstatedir=/var --with-media=Letter &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen>
</sect2>
<sect2>
<title>Installation command explanations</title>
<para><parameter>--sysconfdir=/etc/enscript</parameter>: This switch puts
configuration data in <filename class="directory">/etc/enscript</filename>
instead of <filename class="directory">/usr/etc</filename>.</para>
<para><parameter>--localstatedir=/var</parameter>: This switch sets the
directory for runtime data to <filename class="directory">/var</filename>
instead of <filename class="directory">/usr/var</filename>.</para>
<para><parameter>--with-media=Letter</parameter>: This switch sets the
medium format to letter.</para>
</sect2>
<sect2>
<title>Contents</title>
<para>The <application>enscript</application> package contains
<command>enscript</command> and filter data.
</para>
</sect2>
<sect2><title>Description</title>
<sect3><title>enscript</title>
<para><command>enscript</command> is a filter, used primarily by
printing scripts, that converts
<acronym>ASCII</acronym> files to PostScript.</para>
</sect3>
</sect2>
</sect1>

View File

@ -1,11 +1,120 @@
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
"http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
<!ENTITY % general-entities SYSTEM "../../general.ent">
%general-entities;
<!ENTITY gsview-download-http "http://gd.tuwien.ac.at/publishing/ghostscript/ghostgum/gsview-&gsview-version;.tar.gz">
<!ENTITY gsview-download-ftp "ftp://mirror.cs.wisc.edu/pub/mirrors/ghost/ghostgum/gsview-&gsview-version;.tar.gz">
<!ENTITY gsview-size "895 KB">
<!ENTITY gsview-buildsize "19 MB">
<!ENTITY gsview-time "0.19 SBU">
]>
<sect1 id="gsview" xreflabel="GSview-&gsview-version;">
<?dbhtml filename="gsview.html"?>
<title>GSview-&gsview-version;</title>
&gsview-intro;
&gsview-inst;
&gsview-exp;
&gsview-config;
&gsview-desc;
<sect2>
<title>Introduction to <application>GSview</application></title>
<para><application>GSview</application> is a viewer for PostScript and
<acronym>PDF</acronym> using <application>X</application>.</para>
<sect3><title>Package information</title>
<itemizedlist spacing='compact'>
<listitem><para>Download (HTTP): <ulink
url="&gsview-download-http;"/></para></listitem>
<listitem><para>Download (FTP): <ulink
url="&gsview-download-ftp;"/></para></listitem>
<listitem><para>Download size: &gsview-size;</para></listitem>
<listitem><para>Estimated Disk space required:
&gsview-buildsize;</para></listitem>
<listitem><para>Estimated build time:
&gsview-time;</para></listitem></itemizedlist>
</sect3>
<sect3><title>Additional downloads</title>
<itemizedlist spacing='compact'>
<listitem><para>Required Patch: <ulink
url="&patch-root;/gsview-&gsview-version;-pstotext.patch"/></para></listitem>
<listitem><para>Required Patch: <ulink
url="&patch-root;/gsview-&gsview-version;-lang.patch"/></para></listitem>
</itemizedlist></sect3>
<sect3><title><application>GSview</application> dependencies</title>
<sect4><title>Required</title>
<para><xref linkend="GTK"/> and <xref
linkend="gs"/> or <xref linkend="espgs"/> (with libgs.so installed)</para></sect4>
</sect3>
</sect2>
<sect2>
<title>Installation of <application>GSview</application></title>
<para><application>GSview</application> uses <command>netscape
</command> to browse through the online help. <acronym>BLFS</acronym>
does not install <application>Netscape</application>, but has other
browsers from which to choose. Simply edit <filename>srcunx/gvxreg.c</filename>
using the following sed script with your browser's executable file name
substituting for <replaceable>[browser]</replaceable>:</para>
<screen><userinput><command>sed -i s/netscape/<replaceable>[browser]</replaceable>/ srcunx/gvxreg.c</command></userinput></screen>
<para>Install <application>GSview</application> by running the following
commands:</para>
<screen><userinput><command>sed 's|GSVIEW_ROOT=/usr/local|GSVIEW_ROOT=/usr|' \
srcunx/unx.mak &gt; Makefile &amp;&amp;
patch -Np1 -i ../gsview-&gsview-version;-pstotext.patch &amp;&amp;
patch -Np1 -i ../gsview-&gsview-version;-lang.patch &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen>
</sect2>
<sect2>
<title>Command explanations</title>
<para><command>sed 's|GSVIEW_ROOT=/usr/local|GSVIEW_ROOT=/usr|'</command>: This
command changes the default installation directory to
<filename class="directory">/usr</filename>.</para>
</sect2>
<sect2>
<title>Configuring <application>GSview</application></title>
<sect3><title>Config files</title>
<para><filename>/etc/gsview/*</filename></para>
</sect3>
</sect2>
<sect2>
<title>Contents</title>
<para>The <application>GSview</application> package contains
<command>epstool</command>, <command>gsview</command> and
<command>gsview-help</command>.</para>
</sect2>
<sect2><title>Description</title>
<sect3><title>epstool</title>
<para><command>epstool</command> is a tool for extracting preview
bitmaps in <acronym>EPS</acronym> files.</para></sect3>
<sect3><title>gsview</title>
<para><command>gsview</command> is a viewer for PostScript
(<acronym>PS</acronym>) and
<acronym>PDF</acronym> files.</para></sect3>
<sect3><title>gsview-help</title>
<para><command>gsview-help</command> is a script for displaying help
files in your chosen browser.</para></sect3>
</sect2>
</sect1>

View File

@ -1,3 +1,9 @@
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
"http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
<!ENTITY % general-entities SYSTEM "../../general.ent">
%general-entities;
]>
<sect1 id="pst-postscript-other">
<?dbhtml filename="otherps.html"?>
<title>Other PostScript programs</title>

View File

@ -1,3 +1,9 @@
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
"http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
<!ENTITY % general-entities SYSTEM "../../general.ent">
%general-entities;
]>
<chapter id="pst-ps">
<?dbhtml filename="ps.html"?>
<title>PostScript</title>
@ -6,11 +12,11 @@
PostScript files and view Portable Document Format <acronym>PDF</acronym>
files.</para>
&a2ps;
&enscript;
&psutils;
&gsview;
&xpdf;
&pst-postscript-other;
<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="a2ps.xml"/>
<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="enscript.xml"/>
<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="psutils.xml"/>
<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="gsview.xml"/>
<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="xpdf.xml"/>
<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="other.xml"/>
</chapter>

View File

@ -1,10 +1,117 @@
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
"http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
<!ENTITY % general-entities SYSTEM "../../general.ent">
%general-entities;
<!ENTITY psutils-download-http "http://gd.tuwien.ac.at/publishing/tex/tex-utils/psutils/psutils-&psutils-version;.tar.gz">
<!ENTITY psutils-download-ftp " ">
<!ENTITY psutils-size "68 KB">
<!ENTITY psutils-buildsize "740 KB">
<!ENTITY psutils-time "0.01 SBU">
]>
<sect1 id="psutils" xreflabel="PSUtils-&psutils-version;">
<?dbhtml filename="psutils.html"?>
<title>PSUtils-&psutils-version;</title>
&psutils-intro;
&psutils-inst;
&psutils-exp;
&psutils-desc;
<sect2>
<title>Introduction to <application>PSUtils</application></title>
<para><application>PSUtils</application> is a set of utilities to manipulate
PostScript files.</para>
<sect3><title>Package information</title>
<itemizedlist spacing='compact'>
<listitem><para>Download (HTTP): <ulink
url="&psutils-download-http;"/></para></listitem>
<listitem><para>Download (FTP): <ulink
url="&psutils-download-ftp;"/></para></listitem>
<listitem><para>Download size: &psutils-size;</para></listitem>
<listitem><para>Estimated Disk space required:
&psutils-buildsize;</para></listitem>
<listitem><para>Estimated build time:
&psutils-time;</para></listitem></itemizedlist>
</sect3>
</sect2>
<sect2>
<title>Installation of <application>PSUtils</application></title>
<para>Install <application>PSUtils</application> by running the following
commands:</para>
<screen><userinput><command>cat Makefile.unix | sed -e 's/\/usr\/local/\/usr/g' &gt; Makefile &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen>
</sect2>
<sect2>
<title>Installation command explanations</title>
<para><command>cat ... | sed ...</command>: This command creates a
<filename>Makefile</filename> that installs the program to the
<filename class="directory">/usr</filename> prefix instead of the
<filename class="directory">/usr/local</filename> prefix.</para>
</sect2>
<sect2>
<title>Contents</title>
<para>The <application>PSUtils</application> package contains <command>
psbook</command>, <command>psselect</command>, <command>pstops</command>
<command>psnup</command>, <command>psresize</command>,
<command>epsffit</command>, <command>getafm</command>,
<command>showchar</command>, <command>fixdlsrps</command>,
<command>fixfmps</command>, <command>fixmacps</command>, <command>fixpsditps
</command>, <command>fixpspps</command>, <command>fixscribeps</command>,
<command>fixtpps</command>, <command>fixwfwps</command>,
<command>fixwpps</command>, <command>fixwwps</command>, <command>extractres</command>, <command>includeres</command> and <command>psmerge</command>.</para>
<para>Sometimes <command>psnup</command> and other utilities from this
package produce PostScript files that don't conform to Adobe's
<acronym>DSC</acronym> standard.
<application><acronym>CUPS</acronym></application> may print them
incorrectly. On the other hand,
<application><acronym>CUPS</acronym></application> has builtin
replacements for most commands from this package. For example, to print
a document 2-up, you will issue this command:</para>
<screen><userinput><command>lp -o number-up=2 <replaceable>[filename]</replaceable></command></userinput></screen>
</sect2>
<sect2><title>Description</title>
<sect3><title>psbook</title>
<para><command>psbook</command> rearranges pages into signatures.</para></sect3>
<sect3><title>psselect</title>
<para><command>psselect</command> selects pages and page ranges.</para>
</sect3>
<sect3><title>pstops</title>
<para><command>pstops</command> performs general page rearrangements
and selection.</para></sect3>
<sect3><title>psnup</title>
<para><command>psnup</command> puts multiple pages per physical sheet
of paper.</para></sect3>
<sect3><title>psresize</title>
<para><command>psresize</command> alters the document paper size.</para></sect3>
<sect3><title>epsffit</title>
<para><command>epsffit</command> fits an <acronym>EPSF</acronym> file to a
given bounding box.</para></sect3>
<sect3><title>scripts</title>
<para>The remaining commands are scripts that perform specific functions
described in their respective man pages.</para></sect3>
</sect2>
</sect1>

View File

@ -1,11 +1,169 @@
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
"http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
<!ENTITY % general-entities SYSTEM "../../general.ent">
%general-entities;
<!ENTITY xpdf-download-http "http://gd.tuwien.ac.at/publishing/xpdf/xpdf-&xpdf-version;.tar.gz">
<!ENTITY xpdf-download-ftp "ftp://ftp.foolabs.com/pub/xpdf/xpdf-&xpdf-version;.tar.gz">
<!ENTITY xpdf-size "490 KB">
<!ENTITY xpdf-buildsize "21 MB">
<!ENTITY xpdf-time "0.41 SBU">
]>
<sect1 id="xpdf" xreflabel="Xpdf-&xpdf-version;">
<?dbhtml filename="xpdf.html"?>
<title>Xpdf-&xpdf-version;</title>
&xpdf-intro;
&xpdf-inst;
&xpdf-exp;
&xpdf-config;
&xpdf-desc;
<sect2>
<title>Introduction to <application>Xpdf</application></title>
<para><application>Xpdf</application> is a viewer for Adobe's free Portable
Document Format (<acronym>PDF</acronym>) which is both fast and small and
comes with some useful command-line utilities.</para>
<sect3><title>Package information</title>
<itemizedlist spacing='compact'>
<listitem><para>Download (HTTP): <ulink
url="&xpdf-download-http;"/></para></listitem>
<listitem><para>Download (FTP): <ulink
url="&xpdf-download-ftp;"/></para></listitem>
<listitem><para>Download size: &xpdf-size;</para></listitem>
<listitem><para>Estimated Disk space required:
&xpdf-buildsize;</para></listitem>
<listitem><para>Estimated build time:
&xpdf-time;</para></listitem></itemizedlist>
</sect3>
<sect3><title>Additional downloads</title>
<itemizedlist spacing='compact'>
<listitem><para>Required Patch: <ulink
url="&patch-root;/xpdf-3.00-freetype-2.1.7-hack.patch"/></para></listitem>
</itemizedlist></sect3>
<sect3><title><application>Xpdf</application> dependencies</title>
<sect4><title>Required</title>
<para><xref linkend="lesstif"/>
</para></sect4>
<sect4><title>Optional</title>
<para>
<ulink url="http://gd.tuwien.ac.at/visual/ibiblio/libs/graphics/t1lib-5.0.2.tar.gz">t1lib</ulink> and
<xref linkend="gs"/> or <xref linkend="espgs"/>
</para></sect4>
</sect3>
</sect2>
<sect2>
<title>Installation of <application>Xpdf</application></title>
<para>Install <application>Xpdf</application> by running the following commands:
</para>
<screen><userinput><command>patch -Np1 -i ../xpdf-3.00-freetype-3.1.7-hack.patch &amp;&amp;
./configure --prefix=/usr --sysconfdir=/etc \
--with-freetype2-includes=/usr/include/freetype2 &amp;&amp;
make &amp;&amp;
make install</command></userinput></screen>
</sect2>
<sect2>
<title>Installation command explanations</title>
<para><option>--enable-a4-paper</option>: This switch must be
added to set <acronym>DIN</acronym> A4 as the standard paper format.</para>
</sect2>
<sect2>
<title>Configuring <application>Xpdf</application></title>
<sect3><title>Config files</title>
<para><filename>/etc/xpdfrc</filename>,
<filename>~/.xpdfrc</filename></para></sect3>
<sect3><title>Configuration Information</title>
<para>In the <filename>etc</filename> directory you will find a sample
<filename>xpdfrc</filename> that can be either copied to
<filename>~/.xpdfrc</filename> or taken as an example to write your own
configuration file.</para>
<screen><userinput># Example .xpdfrc
displayFontT1 Times-Roman /usr/share/ghostscript/fonts/n021003l.pfb
displayFontT1 Times-Italic /usr/share/ghostscript/fonts/n021023l.pfb
displayFontT1 Times-Bold /usr/share/ghostscript/fonts/n021004l.pfb
displayFontT1 Times-BoldItalic /usr/share/ghostscript/fonts/n021024l.pfb
displayFontT1 Helvetica /usr/share/ghostscript/fonts/n019003l.pfb
displayFontT1 Helvetica-Oblique /usr/share/ghostscript/fonts/n019023l.pfb
displayFontT1 Helvetica-Bold /usr/share/ghostscript/fonts/n019004l.pfb
displayFontT1 Helvetica-BoldOblique /usr/share/ghostscript/fonts/n019024l.pfb
displayFontT1 Courier /usr/share/ghostscript/fonts/n022003l.pfb
displayFontT1 Courier-Oblique /usr/share/ghostscript/fonts/n022023l.pfb
displayFontT1 Courier-Bold /usr/share/ghostscript/fonts/n022004l.pfb
displayFontT1 Courier-BoldOblique /usr/share/ghostscript/fonts/n022024l.pfb
displayFontT1 Symbol /usr/share/ghostscript/fonts/s050000l.pfb
displayFontT1 ZapfDingbats /usr/share/ghostscript/fonts/d050000l.pfb
fontDir /usr/X11R6/lib/X11/fonts/TTF
psFile "|lpr"
psPaperSize letter
textEOL unix
enableT1lib yes
enableFreeType yes
antialias yes
urlCommand "links -g %s"</userinput></screen>
</sect3>
</sect2>
<sect2>
<title>Contents</title>
<para>The <application>Xpdf</application> package contains
<command>xpdf</command>, <command>pdftops</command>,
<command>pdftotext</command>, <command>pdftoppm</command>,
<command>pdffonts</command>, <command>pdfimages</command> and
<command>pdfinfo</command>.</para>
</sect2>
<sect2><title>Description</title>
<sect3><title>xpdf</title>
<para><command>xpdf</command> displays files in <acronym>PDF</acronym>
format.</para></sect3>
<sect3><title>pdftops</title>
<para><command>pdftops</command> converts <acronym>PDF</acronym> files to
<acronym>PS</acronym> format.</para></sect3>
<sect3><title>pdftotext</title>
<para><command>pdftotext</command> parses <acronym>ASCII</acronym> text from
<acronym>PDF</acronym> files.</para></sect3>
<sect3><title>pdftoppm</title>
<para><command>pdftoppm</command> converts <acronym>PDF</acronym> files to
<acronym>PBM</acronym>, <acronym>PGM</acronym>, <acronym>PPM</acronym>
formats.</para></sect3>
<sect3><title>pdffonts</title>
<para><command>pdffonts</command> lists the fonts used in a
<acronym>PDF</acronym> file along with various information for each
font.</para></sect3>
<sect3><title>pdfimages</title>
<para><command>pdfimages</command> saves images from a
<acronym>PDF</acronym> file as <acronym>PPM</acronym>,
<acronym>PBM</acronym>, or <acronym>JPEG</acronym> files.</para></sect3>
<sect3><title>pdfinfo</title>
<para><command>pdfinfo</command> prints the contents of the 'Info'
dictionary (plus some other useful information) from a
<acronym>PDF</acronym> file.</para></sect3>
</sect2>
</sect1>

View File

@ -6,10 +6,11 @@
<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="pst/scanning/scanning.xml"/>
<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="pst/sgml/sgml.xml"/>
<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="pst/xml/xml.xml"/>
<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="pst/ps/ps.xml"/>
<!-- &pst-xml; -->
&pst-ps;
<!-- &pst-ps; -->
&pst-typesetting;
</part>