FreeBSD Documentation Project Primer for New Contributors | ||
---|---|---|
Prev | Appendix A. Examples |
This section assumes that you have installed the software listed in the textproc/docproj port, either by hand, or by using the port. Further, it is assumed that your software is installed in subdirectories under /usr/local/, and the directory where binaries have been installed is in your PATH. Adjust the paths as necessary for your system.
Example A-3. Converting DocBook to HTML (One Large File)
% jade -V nochunks \ -c /usr/local/share/xml/docbook/dsssl/modular/catalog \ -c /usr/local/share/xml/docbook/catalog \ -c /usr/local/share/xml/jade/catalog \ -d /usr/local/share/xml/docbook/dsssl/modular/html/docbook.dsl \ -t sgml file.xml > file.html
Example A-4. Converting DocBook to HTML (Several Small Files)
% jade \ -c /usr/local/share/xml/docbook/dsssl/modular/catalog \ -c /usr/local/share/xml/docbook/catalog \ -c /usr/local/share/xml/jade/catalog \ -d /usr/local/share/xml/docbook/dsssl/modular/html/docbook.dsl \ -t sgml file.xml
This example may still only generate one HTML file, depending on the structure of the document you are processing, and the stylesheet's rules for splitting output.
Example A-5. Converting DocBook to Postscript
The source XML file must be converted to a TeX file.
% jade -V tex-backend \ -c /usr/local/share/xml/docbook/dsssl/modular/catalog \ -c /usr/local/share/xml/docbook/catalog \ -c /usr/local/share/xml/jade/catalog \ -d /usr/local/share/xml/docbook/dsssl/modular/print/docbook.dsl \ -t tex file.xml
The generated .tex file must now be run through tex, specifying the &jadetex macro package.
% tex "&jadetex" file.tex
You have to run tex at least three times. The first run processes the document, and determines areas of the document which are referenced from other parts of the document, for use in indexing, and so on.
Do not be alarmed if you see warning messages such as “LaTeX Warning: Reference `136' on page 5 undefined on input line 728.” at this point.
The second run reprocesses the document now that certain pieces of information are known (such as the document's page length). This allows index entries and other cross-references to be fixed up.
The third pass performs any final cleanup necessary.
The output from this stage will be file.dvi.
Finally, run dvips to convert the .dvi file to Postscript.
% dvips -o file.ps file.dvi
Example A-6. Converting DocBook to PDF
The first part of this process is identical to that when converting DocBook to Postscript, using the same jade command line (Example A-5).
When the .tex file has been generated you run pdfTeX. However, use the &pdfjadetex macro package instead.
% pdftex "&pdfjadetex" file.tex
Again, run this command three times.
This will generate file.pdf, which does not need to be processed any further.