diff options
author | Steven Knight <knight@baldmt.com> | 2005-12-16 12:16:00 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2005-12-16 12:16:00 (GMT) |
commit | b6eb3e9a8ba7604dd93220d876b1a78d41b5109f (patch) | |
tree | f4ae8889202019c9a5ed7315e33802e03c8705c7 /src/engine/SCons/Tool/pdf.xml | |
parent | 5282b161bd006fff6f2942d21e4924769bd9cf7a (diff) | |
download | SCons-b6eb3e9a8ba7604dd93220d876b1a78d41b5109f.zip SCons-b6eb3e9a8ba7604dd93220d876b1a78d41b5109f.tar.gz SCons-b6eb3e9a8ba7604dd93220d876b1a78d41b5109f.tar.bz2 |
Fix DVIPDF tests, refactor various TeX Tool modules.
Diffstat (limited to 'src/engine/SCons/Tool/pdf.xml')
-rw-r--r-- | src/engine/SCons/Tool/pdf.xml | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/src/engine/SCons/Tool/pdf.xml b/src/engine/SCons/Tool/pdf.xml new file mode 100644 index 0000000..3d64be2 --- /dev/null +++ b/src/engine/SCons/Tool/pdf.xml @@ -0,0 +1,39 @@ +<!-- +__COPYRIGHT__ + +This file is processed by the bin/SConsDoc.py module. +See its __doc__ string for a discussion of the format. +--> +<builder name="PDF"> +<summary> +Builds a <filename>.pdf</filename> file +from a <filename>.dvi</filename> input file +(or, by extension, a <filename>.tex</filename>, +<filename>.ltx</filename>, +or +<filename>.latex</filename> input file). +The suffix specified by the &cv-PDFSUFFIX; construction variable +(<filename>.pdf</filename> by default) +is added automatically to the target +if it is not already present. Example: + +<example> +# builds from aaa.tex +env.PDF(target = 'aaa.pdf', source = 'aaa.tex') +# builds bbb.pdf from bbb.dvi +env.PDF(target = 'bbb', source = 'bbb.dvi') +</example> +</summary> +</builder> + +<cvar name="PDFPREFIX"> +<summary> +The prefix used for PDF file names. +</summary> +</cvar> + +<cvar name="PDFSUFFIX"> +<summary> +The suffix used for PDF file names. +</summary> +</cvar> |