mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 19:07:45 +00:00
Add a DocBook -> PS converter
Before, the converter chain for DocBook -> PDF (ps2pdf) was: docbook -> DVI DVI -> Postscript Postscript -> PDF (ps2pdf) sgmltools has a backend for PostScript so the first two steps in the above converter chain are now condensed into one by adding the following converter for docbook -> Postscript: sgmltools -b ps $$i
This commit is contained in:
parent
3e7a9a5118
commit
7309f018f5
@ -961,7 +961,8 @@ def checkDocBook():
|
||||
path, DOCBOOK = checkProg('SGML-tools 2.x (DocBook), db2x scripts or xsltproc', ['sgmltools', 'db2dvi', 'xsltproc'],
|
||||
rc_entry = [
|
||||
r'''\converter docbook dvi "sgmltools -b dvi $$i" ""
|
||||
\converter docbook html "sgmltools -b html $$i" ""''',
|
||||
\converter docbook html "sgmltools -b html $$i" ""
|
||||
\converter docbook ps "sgmltools -b ps $$i" ""''',
|
||||
r'''\converter docbook dvi "db2dvi $$i" ""
|
||||
\converter docbook html "db2html $$i" ""''',
|
||||
r'''\converter docbook dvi "" ""
|
||||
|
Loading…
Reference in New Issue
Block a user