finished 1.10
[linux_from_scratch.git] / BOOK / README
blob1deb289ee5ed0ad6b245662cc05685073808a57f
1 How do I convert these XML files to other formats like HTML, PF, PS
2 and TXT? You need to have some software installed that deal with these
3 conversions. Please read the INSTALL file how to install the software.
4 Then come back to this file for examples how to convert these files
5 into various other formats.
7 XML to HTML:
8 ------------
9 Create a directory in which you want to store the HTML files and cd into 
10 that directory. Now run:
12         mkdir -p chapter0{1,2,3,4,5,6,7,8,9} preface appendix{a,b} &&
13         /usr/bin/openjade -t xml \
14                 -d /usr/share/dsssl/docbook/html/lfs.dsl \
15                 /usr/share/dsssl/docbook/dtds/decls/xml.dcl \
16                 /path/to/index.xml
20 XML to NOCHUNKS-HTML:
21 --------------------
22 The NOCHUNKS HTML version is one big HTML file:
23         /usr/bin/openjade -t sgml \
24                 -V nochunks \
25                 -d /usr/share/dsssl/docbook/html/lfs.dsl \
26                 /usr/share/dsssl/docbook/dtds/decls/xml.dcl \
27                 /path/to/index.xml > nochunks.html
29 XML to TXT:
30 -----------
31 First create the NOCHUNKS HTML file, then convert by running:
32         /usr/bin/lynx -dump nochunks.html > output.txt
34 XML to PS and PDF:
35 ------------------
36 First create the NOCHUNKS HTML file, then convert by starting
37 htmldoc. You can use the GUI and select the options. If you're
38 satisfied with the default options you can run this command:
40         /usr/bin/htmldoc --book --firstpage p1 -v -t <type> \
41                 -f <output> nochunks.html
43 replace <type> by pdf13 to create a pdf file or replace <type> by ps3 to
44 create a ps file. There are other pdf and ps levels, see the man page for
45 possible other options. Replace <output> with the filename of the ps or
46 pdf file that is to be generated.