-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaaai_script.sh
executable file
·137 lines (119 loc) · 4.44 KB
/
aaai_script.sh
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
#!/bin/bash
# ----------------------------------------------------------------------
# This shell script produces the latex source-package of a paper
# as required by AAAI, in preparation for printed proceedings.
# Copyright (C) 2009 Christian Fritz "fritz at cs dot toronto dot
# edu"
# ----------------------------------------------------------------------
# This program is free software: you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation, either version 3 of
# the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public
# License along with this program. If not, see
# <http://www.gnu.org/licenses/>.
# ----------------------------------------------------------------------
# function for recursive processing of style files
recurseStyles() {
echo "..recursively processing required packages of $1"
PACKAGES=`grep RequirePackage $1 | sed 's/RequirePackage\[[^]]*\]/RequirePackage/g' | sed 's/.*RequirePackage{\([^}]*\)}.*/\1/' | sed -e 's/, */\n/g'`
for name in $PACKAGES; do
if [ ! -e sources/$name.sty ]; then
echo "..locating and copying: $name"
FILE=`locate /$name.sty | head -n 1`
echo $FILE
if [ -e $FILE ]; then
cp $FILE sources
else
echo "..cannot locate $name.sty"
fi
if [ -e sources/$name.sty ]; then
recurseStyles sources/$name.sty
fi
else
echo "$name.sty is already in sources/"
fi
done
}
# -------------------------------
# give a tex file as parameter
if (( $# < 1 )); then
echo "Error: Please give a tex-file as parameter, e.g., ./aaai_script.sh main.tex";
exit;
fi;
mkdir sources
sudo updatedb
echo "locating and copying all used packages"
PACKAGES=`grep ^.usepackage $1 | sed -e 's/.*usepackage{\(.*.\)}.*/\1/' | sed -e 's/, /\n/g'`
for name in $PACKAGES; do
echo "locating and copying: $name"
if [ -e $name.sty ]; then
cp $name.sty sources
else
FILE=`locate /$name.sty | head -n 1`
echo $FILE
if [ -e $FILE ]; then
cp $FILE sources
else
echo "cannot locate $name.sty"
fi
fi
if [ -e sources/$name.sty ]; then
recurseStyles sources/$name.sty
fi
done
echo "inlining all included files"
cp $1 __tmp1
while ( grep ^.input __tmp1 ); do
# INPUTS=`grep ^.input __tmp1 | sed 's/.*input *{*\([^.}]*\).*/\1/'`
# cat __tmp1 | sed '/^%.*$/d' > __tmp2
# for name in $INPUTS; do
# echo "inlining $name"
# awk -v filename=$name '{ if ($0 ~ ".input.*"filename) { system("cat "filename".tex | sed '/^%.*\$/d'"); } else { print $0; } }' < __tmp2 > __tmp1
# done
awk '{ if ( $0 ~ /\\input( |{)/ ) { sub(/\\input( |{)/,""); sub(/}/, ""); sub(/\.tex/, ""); system("cat "$0".tex | sed '/^%.*\$/d'") } else { print $0; } }' __tmp1 > __tmp2
cp __tmp2 __tmp1
done
echo "inlining bibitems"
BIBFILE=`echo $1 | sed 's/.tex/.bbl/'`
awk -v filename=$BIBFILE '{ if ($0 ~ ".bibliography{") { system("cat "filename); } else { print $0; } }' < __tmp1 > __tmp2
cp __tmp2 sources/full.tex
echo "getting figures"
FIGURES=`grep includegraphics __tmp2 | grep -v ^% | sed 's/.*{\([^}]*\)}*/\1/'`
for name in $FIGURES; do
echo "getting figure $name"
mkdir -p sources/`echo "$name" | sed 's/\(.*\)\/.*/\1/'`
cp ${name%.*}.png sources/`echo "$name" | sed 's/\(.*\)\/.*/\1/'`
cp ${name%.*}.bb sources/`echo "$name" | sed 's/\(.*\)\/.*/\1/'`
# modified by asai 2013/10/14
#cp $name.*ps sources/`echo "$name" | sed 's/\(.*\)\/.*/\1/'`
done
# -------------------------------
pushd sources
# echo "latexing source"
# latex full.tex
# echo "latexing source once more"
# latex full.tex
# dvips -Ppdf -G0 -tletter full -o full.ps
# ps2pdf -sPAPERSIZE=letter -dMaxSubsetPct=100 -dCompatibilityLevel=1.2 -dSubsetFonts=false -dEmbedAllFonts=true full.ps
echo "creating the PDF using"
../latexmk/latexmk.pl -pdf \
-latexoption="-halt-on-error" \
-bibtex \
full.tex
rm -v full.fls full.fdb_latexmk
for file in $(ls full.*)
do
mv -v $file ${1%.*}.${file#*.}
done
echo Info: check for any files that are nonstandard... with your own eyes
cat ${1%.*}.log | grep "(/[^ ]*$"
popd
rm __tmp1 __tmp2
echo "DONE"