source: README@ 0290a023

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 0290a023 was 6da4d5a6, checked in by Bruce Dubbs <bdubbs@…>, 20 years ago

Set auto date in general.ent

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

  • Property mode set to 100644
File size: 1.7 KB
Line 
1OUT OF DATE. UPDATE PENDING.
2
3How do I convert these XML files to other formats like HTML, PF, PS
4and TXT? You need to have some software installed that deal with these
5conversions. Please read the INSTALL file how to install that software.
6Then come back to this file for examples how to convert these files
7into various other formats.
8
9XML to HTML:
10------------
11Create a directory in which you want to store the HTML files and cd into
12that directory. Now run:
13 mkdir introduction postlfs general connect basicnet server \
14 content x kde gnome xsoft multimedia pst preface \
15 appendices other
16 /usr/bin/openjade -t xml \
17 -d /usr/share/dsssl/docbook/html/blfs.dsl \
18 /usr/share/dsssl/docbook/dtds/decls/xml.dcl \
19 /path/to/index.xml
20
21
22
23XML to NOCHUNKS-HTML:
24--------------------
25The NOCHUNKS HTML version is one big HTML file:
26 /usr/bin/openjade -t sgml \
27 -V nochunks \
28 -d /usr/share/dsssl/docbook/html/blfs.dsl \
29 /usr/share/dsssl/docbook/dtds/decls/xml.dcl \
30 /path/to/index.xml > nochunks.html
31
32XML to TXT:
33-----------
34First create the NOCHUNKS HTML file, then convert by running:
35 /usr/bin/lynx -dump nochunks.html > output.txt
36
37XML to PS and PDF:
38------------------
39First create the NOCHUNKS HTML file, then convert by starting
40htmldoc. You can use the GUI and select the options. If you're
41satisfied with the default options you can run this command:
42
43 /usr/bin/htmldoc --book --firstpage p1 -v -t <type> \
44 -f <output> nochunks.html
45
46replace <type> by pdf13 to create a pdf file or replace <type> by ps3 to
47create a ps file. There are other pdf and ps levels, see the man page for
48possible other options. Replace <output> with the filename of the ps or
49pdf file that is to be generated.
50
Note: See TracBrowser for help on using the repository browser.