-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpillar.conf
27 lines (27 loc) · 875 Bytes
/
pillar.conf
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
{
"title" : "Enterprise Pharo: A Web Perspective",
"newLine" : #unix,
"defaultExporters" : [ "LaTeX by chapter" ],
"headingLevelOffset" : 0,
"defaultScriptLanguage" : "smalltalk",
"outputDirectory" : "book-result",
"latexCommand" : "lualatex --file-line-error --interaction=nonstopmode --halt-on-error {fileName} 2>&1 1>/dev/null
ret=$?
if [[ $ret -ne 0 ]]; then
cat {fileNameWithoutExtension}.log
echo \"Can't generate the PDF!\"
exit 1
fi",
"inputFiles" : [
"GettingStarted/getting-started.pillar",
"Fundamentals/fundamentals.pillar"
],
"configurations" : {
"LaTeX by chapter" : {
"outputType" : #latex,
"template" : "support/templates/part.latex.template",
"separateOutputFiles" : true
}
},
"support" : [ "support" , "*/figures", ".latexmkrc" ]
}