-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathbuild.sh.config
31 lines (30 loc) · 1.23 KB
/
build.sh.config
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
#!/bin/bash
#===============================================================================
#/**
# * Wilder: The Willner Builder for LaTeX papers (config file).
# * @author : Alexander willner ([email protected])
# * @version : $Id: build.sh.config 423 2010-03-15 14:31:14Z [email protected] $
# */
#===============================================================================
DEBUG=0; # 0 = output to log, 1 = show output
DOINDEX=0; # 0 = no index, 1 = create index
DOBIBTEX=1; # 0 = no bibliography, 1 = create bibliography
LANG="en"; # e.g. en, de, ...
LANGEXT="en_US.UTF-8" # e.g. en_US.UTF-8, de_DE.UTF-8
FILE_BASE="template";
DIR_TMP="/tmp/${FILE_BASE}/";
DIR_SRC="src";
DIR_RES="resources";
DIR_IMG="$DIR_RES/images";
DIR_LYT="$DIR_RES/layout";
DIR_ANA="$DIR_RES/analyzer";
DIR_SCR="$DIR_RES/scripts";
DIR_BLD="lib/$DIR_RES/build";
REQ_DIRS="$DIR_TMP $DIR_DEST $DIR_SRC $DIR_RES $DIR_TMP $DIR_IMG";
REQ_APPLICATIONS="pdflatex aspell perl epstopdf gnuplot Rscript pdfopt";
FILE_ABSTRACT="$DIR_SRC/abstract.tex";
FILE_INTRO="$DIR_SRC/introduction.tex";
FILE_CONFIG="${FILE_BASE}.config.tex";
FILE_MAIN="${FILE_BASE}.tex";
FILE_BIB="${FILE_BASE}.bib";
FILE_ACRO="${FILE_BASE}.acro.tex";