-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.ptx
37 lines (35 loc) · 1.5 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
<?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>
<!-- Web target -->
<target name="web"
format="html"
xsl="custom-web.xsl"
publication="publication-web.ptx" />
<!-- Workbook targets -->
<target name="workbook"
format="pdf"
publication="publication-workbook.ptx"
xsl="custom-latex-workbook.xsl"
latex-engine="pdflatex">
<stringparams latex.preamble.early="\usepackage{parskip}" />
</target>
<target name="workbook-latex"
format="latex"
publication="publication-workbook.ptx"
xsl="custom-latex-workbook.xsl">
<stringparams latex.preamble.early="\usepackage{parskip}" />
</target>
<!-- Full-print targets -->
<target name="fullprint"
format="pdf"
publication="publication-fullprint.ptx"
xsl="custom-latex-fullprint.xsl"
latex-engine="pdflatex" />
<target name="fullprint-latex"
format="latex"
publication="publication-fullprint.ptx"
xsl="custom-latex-fullprint.xsl" />
</targets>
</project>