- Timestamp:
- Oct 4, 2018, 4:01:44 PM (6 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
- Children:
- 6cb935d
- Parents:
- a332d432
- Location:
- doc/theses/aaron_moss_PhD/phd
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/theses/aaron_moss_PhD/phd/Makefile
ra332d432 ra72b240 3 3 TEXLIB = .:${BUILD}:${BIBDIR}: 4 4 5 LATEX = TEXINPUTS=${TEXLIB} && export TEXINPUTS && pdflatex -interaction= -output-directory=${BUILD} 5 # LATEX = TEXINPUTS=${TEXLIB} && export TEXINPUTS && pdflatex -interaction=nonstopmode -halt-on-error -output-directory=${BUILD} 6 LATEX = TEXINPUTS=${TEXLIB} && export TEXINPUTS && latex -halt-on-error -output-directory=${BUILD} 6 7 BIBTEX = BIBINPUTS=${TEXLIB} && export BIBINPUTS && bibtex 7 8 … … 33 34 wc ${SOURCES} 34 35 35 ${DOCUMENT} : ${SOURCES} ${BUILD} 36 ${LATEX} ${BASE} 37 ${LATEX} ${BASE} 36 ${DOCUMENT} : ${BASE}.ps 37 ps2pdf ${BUILD}/$< 38 38 39 rebuild-refs : ${SOURCES} ${BIBFILE} ${BUILD} 39 ${BASE}.ps : ${BASE}.dvi 40 dvips ${BUILD}/$< -o ${BUILD}/$@ 41 42 ${BASE}.dvi : Makefile ${SOURCES} ${BIBFILE} ${BUILD} 40 43 ${LATEX} ${BASE} 41 44 ${BIBTEX} ${BUILD}/${BASE} … … 43 46 ${LATEX} ${BASE} 44 47 48 # ${DOCUMENT} : Makefile ${SOURCES} ${BUILD} 49 # ${LATEX} ${BASE} 50 # ${LATEX} ${BASE} 51 52 # rebuild-refs : Makefile ${SOURCES} ${BIBFILE} ${BUILD} 53 # ${LATEX} ${BASE} 54 # ${BIBTEX} ${BUILD}/${BASE} 55 # ${LATEX} ${BASE} 56 # ${LATEX} ${BASE} 57 45 58 ${BUILD}: 46 59 mkdir -p ${BUILD} -
doc/theses/aaron_moss_PhD/phd/thesis.tex
ra332d432 ra72b240 21 21 22 22 \usepackage{amsmath,amssymb,amstext} % Lots of math symbols and environments 23 \usepackage[pdftex]{graphicx} % For including graphics N.B. pdftex graphics driver 23 % \usepackage[pdftex]{graphicx} % For including graphics N.B. pdftex graphics driver 24 \usepackage{graphicx} 24 25 25 26 \usepackage{footmisc} % for double refs to the same footnote … … 30 31 % Use the "hyperref" package 31 32 % N.B. HYPERREF MUST BE THE LAST PACKAGE LOADED; ADD ADDITIONAL PKGS ABOVE 32 \usepackage[pdftex,pagebackref=false]{hyperref} % with basic options 33 %\usepackage[pdftex,pagebackref=false]{hyperref} % with basic options 34 \usepackage[pagebackref=false]{hyperref} 33 35 % N.B. pagebackref=true provides links back from the References to the body text. This can cause trouble for printing. 34 36
Note: See TracChangeset
for help on using the changeset viewer.