-
Notifications
You must be signed in to change notification settings - Fork 25
/
project.ptx
129 lines (129 loc) · 4.54 KB
/
project.ptx
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<?xml version="1.0" encoding="utf-8"?>
<!-- This file, the project manifest, provides the overall configuration for your PreTeXt project. To edit the content of your document, open `source/main.ptx`. See https://pretextbook.org/doc/guide/html/processing-CLI.html#cli-project-manifest. -->
<project ptx-version="2">
<targets>
<target
name="precalculus-web"
format="html"
source="precalculus/source/main.ptx"
deploy-dir="preview/precalculus" >
<stringparams debug.project.number="the-way-it-should-be"/>
</target>
<target
name="precalculus-print"
format="pdf"
source="precalculus/source/main.ptx"
output-filename="TBIL-Precalculus.pdf"
deploy-dir="preview/precalculus/print" >
<stringparams debug.project.number="the-way-it-should-be"/>
</target>
<target
name="precalculus-web-instructor"
format="html"
source="precalculus/source/main.ptx"
publication="instructor.ptx"
deploy-dir="preview/precalculus/instructor" >
<stringparams debug.project.number="the-way-it-should-be"/>
</target>
<target
name="precalculus-print-instructor"
format="pdf"
source="precalculus/source/main.ptx"
publication="instructor.ptx"
output-filename="TBIL-Precalculus-Instructor.pdf"
deploy-dir="preview/precalculus/print" >
<stringparams debug.project.number="the-way-it-should-be"/>
</target>
<target
name="precalculus-print-slides"
format="pdf"
source="precalculus/source/main.ptx"
xsl="slides.xsl"
output-filename="TBIL-Precalculus-Slides.pdf"
deploy-dir="preview/precalculus/print" >
<stringparams debug.project.number="the-way-it-should-be"/>
</target>
<target
name="calculus-web"
format="html"
source="calculus/source/main.ptx"
deploy-dir="preview/calculus" >
<stringparams debug.project.number="the-way-it-should-be"/>
</target>
<target
name="calculus-print"
format="pdf"
source="calculus/source/main.ptx"
output-filename="TBIL-Calculus.pdf"
deploy-dir="preview/calculus/print" >
<stringparams debug.project.number="the-way-it-should-be"/>
</target>
<target
name="calculus-web-instructor"
format="html"
source="calculus/source/main.ptx"
publication="instructor.ptx"
deploy-dir="preview/calculus/instructor" >
<stringparams debug.project.number="the-way-it-should-be"/>
</target>
<target
name="calculus-print-instructor"
format="pdf"
source="calculus/source/main.ptx"
publication="instructor.ptx"
output-filename="TBIL-Calculus-Instructor.pdf"
deploy-dir="preview/calculus/print" >
<stringparams debug.project.number="the-way-it-should-be"/>
</target>
<target
name="calculus-print-slides"
format="pdf"
source="calculus/source/main.ptx"
xsl="slides.xsl"
output-filename="TBIL-Calculus-Slides.pdf"
deploy-dir="preview/calculus/print" >
<stringparams debug.project.number="the-way-it-should-be"/>
</target>
<target
name="linear-algebra-web"
format="html"
source="linear-algebra/source/main.ptx"
deploy-dir="preview/linear-algebra" >
<stringparams debug.project.number="the-way-it-should-be"/>
</target>
<target
name="linear-algebra-print"
format="pdf"
source="linear-algebra/source/main.ptx"
output-filename="TBIL-Linear-Algebra.pdf"
deploy-dir="preview/linear-algebra/print" >
<stringparams debug.project.number="the-way-it-should-be"/>
</target>
<target
name="linear-algebra-web-instructor"
format="html"
source="linear-algebra/source/main.ptx"
publication="instructor.ptx"
deploy-dir="preview/linear-algebra/instructor" >
<stringparams debug.project.number="the-way-it-should-be"/>
</target>
<target
name="linear-algebra-print-instructor"
format="pdf"
source="linear-algebra/source/main.ptx"
publication="instructor.ptx"
output-filename="TBIL-Linear-Algebra-Instructor.pdf"
deploy-dir="preview/linear-algebra/print" >
<stringparams debug.project.number="the-way-it-should-be"/>
</target>
<target
name="linear-algebra-print-slides"
format="pdf"
source="linear-algebra/source/main.ptx"
xsl="slides.xsl"
output-filename="TBIL-Linear-Algebra-Slides.pdf"
deploy-dir="preview/linear-algebra/print" >
<stringparams debug.project.number="the-way-it-should-be"/>
</target>
</targets>
</project>