-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathproject.ptx
More file actions
147 lines (142 loc) · 4.78 KB
/
project.ptx
File metadata and controls
147 lines (142 loc) · 4.78 KB
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<?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>
<!-- Preview targets -->
<target
name="precalculus-preview"
format="html"
publication="preview.ptx"
source="precalculus/source/main.ptx"
deploy-dir="preview/precalculus" >
<stringparams debug.project.number="the-way-it-should-be"/>
</target>
<target
name="calculus-preview"
format="html"
publication="preview.ptx"
source="calculus/source/main.ptx"
deploy-dir="preview/calculus" >
<stringparams debug.project.number="the-way-it-should-be"/>
</target>
<target
name="linear-algebra-preview"
format="html"
publication="preview.ptx"
source="linear-algebra/source/main.ptx"
deploy-dir="preview/linear-algebra" >
<stringparams debug.project.number="the-way-it-should-be"/>
</target>
<!-- Precalculus targets -->
<target
name="precalculus-web"
format="html"
source="precalculus/source/main.ptx" >
<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" >
<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" >
<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" >
<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" >
<stringparams debug.project.number="the-way-it-should-be"/>
</target>
<!-- Calculus targets -->
<target
name="calculus-web"
format="html"
source="calculus/source/main.ptx" >
<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" >
<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" >
<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" >
<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" >
<stringparams debug.project.number="the-way-it-should-be"/>
</target>
<!-- Linear algebra targets -->
<target
name="linear-algebra-web"
format="html"
source="linear-algebra/source/main.ptx" >
<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" >
<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" >
<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" >
<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" >
<stringparams debug.project.number="the-way-it-should-be"/>
</target>
</targets>
</project>