-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.ptx
53 lines (47 loc) · 1.64 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
<?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"> -->
<project xmlns:xi="http://www.w3.org/2001/XInclude">
<targets>
<target name="web">
<format>html</format>
<source>pretext/main.ptx</source>
<publication>publication/html.xml</publication>
<output-dir>build/html</output-dir>
<xsl>pretext/csawesome-pretext-style.xsl</xsl>
<stringparam key="html.css.extra" value="external/_static/css/custom.css"/>
</target>
<target name="runestone">
<format>html</format>
<source>pretext/main.ptx</source>
<publication>publication/runestone.xml</publication>
<output-dir>published/csawesome2ptxbeta</output-dir>
<xsl>pretext/csawesome-pretext-style.xsl</xsl>
<stringparam key="html.css.extra" value="external/_static/css/custom.css"/>
</target>
<target name="print">
<format>pdf</format>
<source>pretext/main.ptx</source>
<publication>pretext/publication.ptx</publication>
<output-dir>output/pdf</output-dir>
</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>