forked from AlexanderWillner/Review
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.sh.config
31 lines (31 loc) · 1.22 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
31
#!/bin/bash
#===============================================================================
#/**
# * LaTeX review template (build config)
# * @author : Alexander willner (willner@cs.uni-bonn.de)
# */
#===============================================================================
DEBUG=0; # 0 = output to log, 1 = show output
DOINDEX=0; # 0 = no index, 1 = create index
DOBIBTEX=0; # 0 = do not call BibTeX, 1 = call BibTeX
DOSPELLCHECK=0; # 0 = no spell check, 1 = spell check
DOOPT=0; # 0 = do not optimize PDF, 1 = optimize it
LANG="en"; # e.g. en, de, ...
LANGEXT="en_US.UTF-8" # e.g., en_US.UTF-8, de_DE.UTF-8, ...
DIR_TMP="tmp";
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/resources/build";
REQ_DIRS="$DIR_TMP $DIR_DEST $DIR_SRC $DIR_RES $DIR_TMP $DIR_IMG $DIR_TMP/$DIR_SRC";
REQ_APPLICATIONS="pdflatex aspell perl epstopdf gnuplot Rscript pdfopt";
MAX_ABSTRACT="350";
MIN_ABSTRACT="150";
FILE_ABSTRACT="$DIR_SRC/abstract.tex";
FILE_INTRO="$DIR_SRC/introduction.tex";
FILE_CONFIG="review.config.tex";
FILE_MAIN="review.tex";
FILE_BIB="review.bib";