Ignore:
Timestamp:
Oct 4, 2018, 4:01:44 PM (5 years ago)
Author:
Aaron Moss <a3moss@…>
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
Message:

switched thesis to use latex instead of pdflatex

Location:
doc/theses/aaron_moss_PhD/phd
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • doc/theses/aaron_moss_PhD/phd/Makefile

    ra332d432 ra72b240  
    33TEXLIB = .:${BUILD}:${BIBDIR}:
    44
    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}
     6LATEX = TEXINPUTS=${TEXLIB} && export TEXINPUTS && latex -halt-on-error -output-directory=${BUILD}
    67BIBTEX = BIBINPUTS=${TEXLIB} && export BIBINPUTS && bibtex
    78
     
    3334        wc ${SOURCES}
    3435
    35 ${DOCUMENT} : ${SOURCES} ${BUILD}
    36         ${LATEX} ${BASE}
    37         ${LATEX} ${BASE}
     36${DOCUMENT} : ${BASE}.ps
     37        ps2pdf ${BUILD}/$<
    3838
    39 rebuild-refs : ${SOURCES} ${BIBFILE} ${BUILD}
     39${BASE}.ps : ${BASE}.dvi
     40        dvips ${BUILD}/$< -o ${BUILD}/$@
     41
     42${BASE}.dvi : Makefile ${SOURCES} ${BIBFILE} ${BUILD}
    4043        ${LATEX} ${BASE}
    4144        ${BIBTEX} ${BUILD}/${BASE}
     
    4346        ${LATEX} ${BASE}
    4447
     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
    4558${BUILD}:
    4659        mkdir -p ${BUILD}
  • doc/theses/aaron_moss_PhD/phd/thesis.tex

    ra332d432 ra72b240  
    2121
    2222\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}
    2425
    2526\usepackage{footmisc} % for double refs to the same footnote
     
    3031% Use the "hyperref" package
    3132% 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}
    3335% N.B. pagebackref=true provides links back from the References to the body text. This can cause trouble for printing.
    3436
Note: See TracChangeset for help on using the changeset viewer.