-
Notifications
You must be signed in to change notification settings - Fork 77
/
project.ptx
executable file
·64 lines (64 loc) · 2.13 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
<?xml version="1.0" encoding="utf-8"?>
<!--
This file provides the overall configuration for your PreTeXt
project. To edit the content of your document, open `source/cppds2.ptx`
(default location).
-->
<project>
<targets>
<target name="web">
<format>html</format>
<source>pretext/cppds2.ptx</source>
<publication>pretext/publication-rs-for-all.xml</publication>
<output-dir>output/html</output-dir>
</target>
<target name="runestone">
<format>html</format>
<source>pretext/cppds2.ptx</source>
<publication>pretext/publication-rs-academy.xml</publication>
<output-dir>published/cppds2</output-dir>
</target>
<target name="epub">
<format>epub</format>
<source>pretext/cppds2.ptx</source>
<publication>pretext/publication-pub.xml</publication>
<output-dir>published/epub</output-dir>
</target>
<target name="latex">
<format>latex</format>
<source>pretext/cppds2.ptx</source>
<publication>pretext/publication-rs-for-all.xml</publication>
<output-dir>output/latex</output-dir>
</target>
<target name="pdf" pdf-method="xelatex">
<format>pdf</format>
<source>pretext/cppds2.ptx</source>
<publication>pretext/publication-rs-for-all.xml</publication>
<output-dir>output/pdf</output-dir>
</target>
<target name="subset">
<format>html</format>
<source>source/cppds2.ptx</source>
<publication>publication/publication.ptx</publication>
<output-dir>output/subset</output-dir>
<stringparam key="debug.skip-knowls" value="yes"/>
<!-- edit this to change the section/chapter/etc. to include
in your subset build -->
<xmlid-root>ch-first</xmlid-root>
</target>
</targets>
<executables>
<latex>latex</latex>
<pdflatex>pdflatex</pdflatex>
<xelatex>xelatex</xelatex>
<pdfsvg>pdf2svg</pdfsvg>
<asy>asy</asy>
<sage>sage</sage>
<pdfpng>convert</pdfpng>
<pdfeps>pdftops</pdfeps>
<pdfcrop>pdf-crop-margins</pdfcrop>
<pageres>pageres</pageres>
<node>node</node>
<liblouis>file2brl</liblouis>
</executables>
</project>