From 662540098a325446edbb338fb1dace298dcc79d0 Mon Sep 17 00:00:00 2001 From: StephaneDucasse Date: Sun, 12 Oct 2014 19:45:42 +0200 Subject: [PATCH] add support for artefact compilation --- _support/templates/book.latex.template | 11 ++++++----- pillar.conf | 11 ++++++----- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/_support/templates/book.latex.template b/_support/templates/book.latex.template index 7f2d3bd..9e607a3 100644 --- a/_support/templates/book.latex.template +++ b/_support/templates/book.latex.template @@ -7,15 +7,16 @@ vmargin={.75in,1in}, ignoreheadfoot ]{geometry} -\input{../_support/latex/common.tex} +\input{../support/latex/common.tex} \setboolean{lulu}{true} %================================================================= % Add the path for the figures of each chapter here: \graphicspath{ - {../figures/} - {../Copyright/} - {../Zinc/} - {../PillarChap/} + {../figures/} + {../Copyright/} + {../Zinc/} + {../PillarChap/} + {../Artefact/} {../Zinc-HTTP/} {../Zinc-Encoding-Meta/} {../Zinc-REST/} diff --git a/pillar.conf b/pillar.conf index 246c4a1..fabc4ed 100644 --- a/pillar.conf +++ b/pillar.conf @@ -6,17 +6,17 @@ "configurations" : { "LaTeX by chapter" : { "outputType" : #latex, - "template" : "_support/templates/chapter.latex.template", + "template" : "support/templates/chapter.latex.template", "separateOutputFiles" : true }, "LaTeX whole book" : { "outputType" : #latex, - "template" : "_support/templates/book.latex.template", + "template" : "support/templates/book.latex.template", "outputFile" : "book-result/EnterprisePharo.tex" }, "HTML by chapter" : { "outputType" : #html, - "template" : "_support/templates/chapter.html.template", + "template" : "support/templates/chapter.html.template", "separateOutputFiles" : true }, "Markdown by chapter" : { @@ -26,9 +26,10 @@ }, "inputFiles" : [ "Copyright/License.pier", - "Zinc-Encoding-Meta/Zinc-Encoding-Meta.pillar", "Zinc-HTTP/Zinc-HTTP.pillar", + "Zinc-Encoding-Meta/Zinc-Encoding-Meta.pillar", "Zinc-REST/Zinc-REST.pillar", - "PillarChap/Pillar.pillar" + "PillarChap/Pillar.pillar", + "Artefact/Artefact.pillar" ] }