| |
---|
| | // documents are written. Default "pdfs". |
---|
| | // pdfDir = project.projectDir.dir("foo") |
---|
| | |
---|
| | // Specify the list of files used (\input) in the lecture documents. |
---|
| | // Defaults to the three files shown below, which are REQUIRED. All |
---|
| | // files in the list will become dependencies of the lecture documents. |
---|
| | // slidesFiles = [ |
---|
| | // "paper_init.tex", |
---|
| | // "lecturedates.tex", |
---|
| | // "doc_init.tex" |
---|
| | // ] |
---|
| | // Defaults to ["paper_init.tex", "lecturedates.tex", "doc_init.tex"] |
---|
| | // (which are generally all REQUIRED). All files in the list will |
---|
| | // become dependencies of the lecture documents. |
---|
| | // slidesFiles.add("foo.tex") |
---|
| | // slidesFiles.addAll(["bar.tex", "baz.tex"]) |
---|
| | |
---|
| | // Also: |
---|
| | // examplesImages = [ ... ] list of images used in the examples document |
---|
| | // examplesFiles = [ ... ] list of files used in the examples document |
---|
| | // cleanFiles = [ ... ]: list of files to be removed by the "clean" targets |
---|
| | // cleanDirs = [ ... ]: list of directories to be removed by the "clean" targets |
---|
| | // latexFlags = [ ... ]: list of LaTeX flags |
---|
| | // examplesImages: list of images used in the examples document |
---|
| | // examplesFiles: list of files used in the examples document |
---|
| | // cleanFiles: list of files to be removed by the "clean" targets |
---|
| | // cleanDirs: list of directories to be removed by the "clean" targets |
---|
| | // latexFlags: list of LaTeX flags |
---|
| | } |
---|
| | |
---|
| | // Typical task to generate images from PlantUML. |
---|
| | // By convention the task name is "images.whatever", but it can really be |
---|
| |
---|
|