-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
94 lines (73 loc) · 2.37 KB
/
Copy pathRakefile
File metadata and controls
94 lines (73 loc) · 2.37 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
##################
# Common Options #
##################
#
# Most projects will only need to touch the options in this section
#
# The only required option is $MAIN_JOB
#
# The LaTeX job name
# The output file will be this with '.pdf' appended
$MAIN_JOB = 'example-doc'
# The input file
# Default value is $MAIN_JOB.tex
$MAIN_FILE = 'example.tex'
# Other, independent jobs (eg: individual chapters)
# Format is
# 'job name' => 'job input file'
#$SIDE_JOBS = {
# 'part1' => 'part1.tex'
#}
# Header and footer files
# If you define \documentclass in a separate file, this should be
# given with $HEADER, and if you define \bibliography in a separate
# file, this should be given with $FOOTER. This will help the script
# figure out what needs to be done.
# Note that this is the source file location, and so relative paths
# are important
#$HEADER = 'tex/header.tex'
#$FOOTER = 'tex/footer.tex'
# What to name the archive
# Defauls to $MAIN_JOB
$DIST_NAME = 'example-archive'
# Any non-standard files to copy into the build dir
# Paths are relative to the Rakefile
$EXTRA_INCLUDES = []
##################
# External Tools #
##################
#
# All the tool locations can be overridden with environment
# variables of the same name
#
# The LaTeX command (should be pdflatex)
# $LATEX = '/path/to/pdflatex'
# The BibTeX command
# $BIBTEX = '/path/to/bibtex'
# The dvips command, used if $LATEX_OUTPUT_FMT is 'dvi'
# $DVIPS = '/path/to/dvips'
# $DVIPS_OPTS = ['arg1', 'arg2']
# The ps2pdf command, used if $LATEX_OUTPUT_FMT is 'dvi'
# $PS2PDF = '/path/to/ps2pdf'
# $PS2PDF_OPTS = ['arg1', 'arg2']
# The epstopdf command, used to convert EPS files to PDF
# if $LATEX_OUTPUT_FMT is 'pdf'
# $EPSTOPDF = '/path/to/epstopdf'
# $EPSTOPDF_OPTS = ['arg1', 'arg2']
####################
# Advanced Options #
####################
# Basically controls whether LaTeX is used in pdflatex mode
# (directly producing PDF output) or normal LaTeX mode
# (producing DVI output which is then converted to postscript
# then PDF). Can be 'pdf' or 'dvi'.
# Default is 'pdf' unless the documentclass is powerdot or prosper.
# $LATEX_OUTPUT_FMT = 'pdf'
# Output all the command results? (default: true)
# $VERBOSE_MSGS = false
# Where to put the build files (default: 'build')
# Can be overridden with the BUILD_DIR environment
# variable
# $BUILD_DIR = 'build'
# This next line is required: do not touch!
import 'build.rake'