printnomencl and windows .bat file
This commit is contained in:
parent
76a733ee30
commit
00bc0c553e
@ -575,8 +575,10 @@
|
|||||||
}% matches Roman Symbols > A
|
}% matches Roman Symbols > A
|
||||||
|
|
||||||
% Add nomenclature to contents and print out nomenclature
|
% Add nomenclature to contents and print out nomenclature
|
||||||
\newcommand{\printnomencl}{
|
\newcommand{\printnomencl}[1][]{
|
||||||
\printnomenclature
|
\ifthenelse{\equal {#1}{}}
|
||||||
|
{\printnomenclature}
|
||||||
|
{\printnomenclature[#1]}
|
||||||
\addcontentsline{toc}{chapter}{\nomname}
|
\addcontentsline{toc}{chapter}{\nomname}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
47
compile-thesis-windows.bat
Normal file
47
compile-thesis-windows.bat
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
SET FILENAME=thesis
|
||||||
|
|
||||||
|
DEL "%FILENAME%.aux"
|
||||||
|
DEL "%FILENAME%.bbl"
|
||||||
|
DEL "%FILENAME%.blg"
|
||||||
|
DEL "%FILENAME%.d"
|
||||||
|
DEL "%FILENAME%.fls"
|
||||||
|
DEL "%FILENAME%.ild"
|
||||||
|
DEL "%FILENAME%.ind"
|
||||||
|
DEL "%FILENAME%.toc"
|
||||||
|
DEL "%FILENAME%.lot"
|
||||||
|
DEL "%FILENAME%.lof"
|
||||||
|
DEL "%FILENAME%.idx"
|
||||||
|
DEL "%FILENAME%.out"
|
||||||
|
DEL "%FILENAME%.nlo"
|
||||||
|
DEL "%FILENAME%.nls"
|
||||||
|
DEL "%FILENAME%.pdf"
|
||||||
|
DEL "%FILENAME%.ps"
|
||||||
|
DEL "%FILENAME%.dvi"
|
||||||
|
|
||||||
|
pdflatex -interaction=nonstopmode "%FILENAME%.tex"
|
||||||
|
bibtex "%FILENAME%.aux"
|
||||||
|
makeindex "%FILENAME%.aux"
|
||||||
|
makeindex "%FILENAME%.idx"
|
||||||
|
makeindex "%FILENAME%.nlo" -s nomencl.ist -o "%FILENAME%".nls
|
||||||
|
pdflatex -interaction=nonstopmode "%FILENAME%.tex"
|
||||||
|
makeindex "%FILENAME%.nlo" -s nomencl.ist -o "%FILENAME%".nls
|
||||||
|
pdflatex -interaction=nonstopmode "%FILENAME%.tex"
|
||||||
|
|
||||||
|
|
||||||
|
DEL "%FILENAME%.aux"
|
||||||
|
DEL "%FILENAME%.bbl"
|
||||||
|
DEL "%FILENAME%.blg"
|
||||||
|
DEL "%FILENAME%.d"
|
||||||
|
DEL "%FILENAME%.fls"
|
||||||
|
DEL "%FILENAME%.ild"
|
||||||
|
DEL "%FILENAME%.ind"
|
||||||
|
DEL "%FILENAME%.toc"
|
||||||
|
DEL "%FILENAME%.lot"
|
||||||
|
DEL "%FILENAME%.lof"
|
||||||
|
DEL "%FILENAME%.idx"
|
||||||
|
DEL "%FILENAME%.out"
|
||||||
|
DEL "%FILENAME%.nlo"
|
||||||
|
DEL "%FILENAME%.nls"
|
||||||
|
|
||||||
|
|
||||||
|
"%FILENAME%.pdf"
|
@ -70,7 +70,8 @@ elif [ $1 = $compile ]; then
|
|||||||
echo "Compiling your PhD Thesis...please wait...!"
|
echo "Compiling your PhD Thesis...please wait...!"
|
||||||
pdflatex -interaction=nonstopmode $filename.tex
|
pdflatex -interaction=nonstopmode $filename.tex
|
||||||
bibtex $filename.aux
|
bibtex $filename.aux
|
||||||
pdflatex -interaction=nonstopmode $filename.tex
|
makeindex $filename.aux
|
||||||
|
makeindex $filename.idx
|
||||||
makeindex $filename.nlo -s nomencl.ist -o $filename.nls
|
makeindex $filename.nlo -s nomencl.ist -o $filename.nls
|
||||||
pdflatex -interaction=nonstopmode $filename.tex
|
pdflatex -interaction=nonstopmode $filename.tex
|
||||||
makeindex $filename.nlo -s nomencl.ist -o $filename.nls
|
makeindex $filename.nlo -s nomencl.ist -o $filename.nls
|
||||||
|
BIN
thesis.pdf
BIN
thesis.pdf
Binary file not shown.
@ -112,9 +112,9 @@
|
|||||||
|
|
||||||
\listoftables
|
\listoftables
|
||||||
|
|
||||||
|
% \printnomenclature[space] space can be set as 2.5cm between symbol and description
|
||||||
\printnomencl
|
\printnomencl
|
||||||
|
|
||||||
|
|
||||||
% ***********************************Main Matter***********************************
|
% ***********************************Main Matter***********************************
|
||||||
\mainmatter
|
\mainmatter
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user