summaryrefslogtreecommitdiff
path: root/src/engine/SCons/Tool/dvips.xml
blob: e3641ff5d0f586872d5428486409600a93416e0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!--
Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 The SCons Foundation

This file is processed by the bin/SConsDoc.py module.
See its __doc__ string for a discussion of the format.
-->
<tool name="dvips">
<summary>
Sets construction variables for the dvips utility.
</summary>
<sets>
DVIPS
DVIPSFLAGS
PSCOM
PSPREFIX
PSSUFFIX
</sets>
<uses>
PSCOMSTR
</uses>
</tool>

<builder name="PostScript">
<summary>
Builds a <filename>.ps</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-link-PSSUFFIX; construction variable
(<filename>.ps</filename> by default)
is added automatically to the target
if it is not already present.  Example:

<example>
# builds from aaa.tex
env.PostScript(target = 'aaa.ps', source = 'aaa.tex')
# builds bbb.ps from bbb.dvi
env.PostScript(target = 'bbb', source = 'bbb.dvi')
</example>
</summary>
</builder>

<cvar name="DVIPS">
<summary>
The TeX DVI file to PostScript converter.
</summary>
</cvar>

<cvar name="DVIPSFLAGS">
<summary>
General options passed to the TeX DVI file to PostScript converter.
</summary>
</cvar>

<cvar name="PSCOM">
<summary>
The command line used to convert TeX DVI files into a PostScript file.
</summary>
</cvar>

<cvar name="PSCOMSTR">
<summary>
The string displayed when a TeX DVI file
is converted into a PostScript file.
If this is not set, then &cv-link-PSCOM; (the command line) is displayed.
</summary>
</cvar>

<cvar name="PSPREFIX">
<summary>
The prefix used for PostScript file names.
</summary>
</cvar>

<cvar name="PSSUFFIX">
<summary>
The prefix used for PostScript file names.
</summary>
</cvar>