-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathproject.ptx
73 lines (71 loc) · 1.82 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
<?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="web"
format="html"
source="dmoi.ptx"
publication="publication.ptx"
xsl="dmoi-html.xsl"
>
<stringparams html.css.extra="external/custom-styles.css" />
</target>
<target
name="runestone"
format="html"
platform="runestone"
source="dmoi.ptx"
publication="runestone.ptx"
xsl="dmoi-html.xsl"
>
<stringparams html.css.extra="external/custom-styles.css" />
</target>
<target
name="print"
format="pdf"
latex-engine="pdflatex"
source="dmoi.ptx"
publication="print.ptx"
xsl="dmoi-latex.xsl"
/>
<target
name="latex"
format="latex"
source="dmoi.ptx"
publication="publication.ptx"
xsl="dmoi-latex.xsl"
/>
<target
name="crc-print"
format="pdf"
latex-engine="pdflatex"
source="dmoi.ptx"
publication="crc.ptx"
xsl="dmoi-latex-crc.xsl"
/>
<target
name="subset"
format="pdf"
latex-engine="pdflatex"
source="dmoi-sample.ptx"
publication="crc.ptx"
xsl="dmoi-latex-crc.xsl"
/>
<target
name="crc-latex"
format="latex"
source="dmoi.ptx"
publication="crc.ptx"
xsl="dmoi-latex-crc.xsl"
/>
<target
name="epub"
format="epub"
source="dmoi.ptx"
publication="publication.ptx"
xsl="dmoi-latex.xsl"
/>
<target name="ww-sets" format="webwork" source="dmoi.ptx" />
</targets>
</project>