-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.ptx
More file actions
92 lines (84 loc) · 3.25 KB
/
project.ptx
File metadata and controls
92 lines (84 loc) · 3.25 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
<?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>
<!-- Main course for html or pdf -->
<target name="web" source="main.ptx" format="html"
publication="publication.ptx" deploy-dir="course" />
<target name="print" source="main.ptx" format="pdf"
output-filename="course.pdf" publication="publication.ptx" />
<target name="slides" source="slides/slides.ptx" format="revealjs"
publication="publication-slides.ptx" output-dir="slides"
output-filename="index.html"/>
<target name="slides-annotated" source="slides/slides.ptx" format="revealjs"
publication="publication-slides-annotated.ptx" output-dir="slides-annotated"
output-filename="index.html"/>
<!-- The following targets are used to create stand-alone documents, which could be additional slide decks, pdfs, or SCORM archives. Run with `pretext build slides -i source/slides/[filename.ptx]`, for example. -->
<target name="pdf" standalone="yes" format="pdf"
output-dir="pdfs" publication="publication_standalone.ptx"/>
<target name="slides" standalone="yes" format="revealjs"
output-dir="slides" publication="publication-slides.ptx"/>
<target name="slides-annotated" standalone="yes" format="revealjs"
output-dir="slides" publication="publication-slides-annotated.ptx"/>
<target name="scorm" standalone="yes" format="html" compression="scorm"
output-dir="scorms" publication="publication_standalone.ptx"/>
</targets>
</project>
<!-- SAMPLE MANIFEST illustrating all options. Defaults are given (mostly). -->
<!-- <project
ptx-version="2"
source="source"
publication="publication"
output-dir="output"
site="site"
stage="output/stage"
xsl="xsl"
asy-method="server"
>
<targets>
<target
name="web"
format="html"
source="main.ptx"
publication="publication.ptx"
output-dir="web"
deploy-dir="interactive"
xsl="custom-html.xsl"
asy-method="server"
/>
<target
name="web-zipped"
format="html"
source="main.ptx"
publication="publication.ptx"
output-dir="web"
compression="zip"
asy-method="server"
/>
<target
name="runestone"
format="html"
platform="runestone"
/>
<target
name="print"
format="pdf"
source="main.ptx"
publication="publication.ptx"
output-dir="print"
output-filename="mybook.pdf"
latex-engine="pdflatex"
deploy-dir="pdf"
/>
<target
name="latex"
format="latex"
/>
<target
name="braille"
format="braille"
braille-mode="emboss"
/>
</targets>
</project>
-->