Changeset 9fce933a
- Timestamp:
- Sep 17, 2018, 8:20:02 AM (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:
- 7ff01ff
- Parents:
- bedb40e
- Location:
- doc
- Files:
-
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/bibliography/pl.bib
rbedb40e r9fce933a 1581 1581 1582 1582 @mastersthesis{Delisle18, 1583 author = {Thierry Delisle 1583 author = {Thierry Delisle}, 1584 1584 title = {Concurrency in \textsf{C}$\mathbf{\forall}$}, 1585 1585 school = {School of Computer Science, University of Waterloo}, -
doc/theses/aaron_moss/phd/Makefile
rbedb40e r9fce933a 1 LATEX = pdflatex -interaction=nonstopmode 2 BIBTEX = bibtex 1 BUILD = build 2 BIBDIR = ../../../bibliography 3 TEXLIB = .:${BUILD}:${BIBDIR}: 4 5 LATEX = TEXINPUTS=${TEXLIB} && export TEXINPUTS && pdflatex -interaction= -output-directory=${BUILD} 6 BIBTEX = BIBINPUTS=${TEXLIB} && export BIBINPUTS && bibtex 3 7 4 8 BASE = thesis 5 9 DOCUMENT = ${BASE}.pdf 6 AUX = ${BASE}.aux ${BASE}.bbl ${BASE}.blg ${BASE}.log ${BASE}.out ${BASE}.toc 10 BIBFILE = ${BIBDIR}/pl.bib 7 11 8 12 SOURCES = ${addsuffix .tex, \ … … 23 27 24 28 clean : 25 @rm -f rv ${DOCUMENT} ${AUX}29 @rm -fv ${BUILD}/* 26 30 27 31 wc : 28 32 wc ${SOURCES} 29 33 30 ${DOCUMENT} : ${SOURCES} 34 ${DOCUMENT} : ${SOURCES} ${BUILD} 31 35 ${LATEX} ${BASE} 32 36 ${LATEX} ${BASE} 33 37 34 rebuild-refs : ${SOURCES} aaron-thesis.bib38 rebuild-refs : ${SOURCES} ${BIBFILE} ${BUILD} 35 39 ${LATEX} ${BASE} 36 ${BIBTEX} ${B ASE}40 ${BIBTEX} ${BUILD}/${BASE} 37 41 ${LATEX} ${BASE} 38 42 ${LATEX} ${BASE} 43 44 ${BUILD}: 45 mkdir -p ${BUILD} -
doc/theses/aaron_moss/phd/thesis.tex
rbedb40e r9fce933a 141 141 \addcontentsline{toc}{chapter}{\textbf{References}} 142 142 143 \bibliography{ aaron-thesis}143 \bibliography{pl} 144 144 % Tip 5: You can create multiple .bib files to organize your references. 145 145 % Just list them all in the \bibliogaphy command, separated by commas (no spaces).
Note: See TracChangeset
for help on using the changeset viewer.