Changes in / [3271166:6e9ffd1]
- Location:
- doc
- Files:
-
- 1 added
- 5 edited
-
bibliography/pl.bib (modified) (1 diff)
-
theses/aaron_moss_PhD/phd/Makefile (modified) (2 diffs)
-
theses/aaron_moss_PhD/phd/aaron-thesis.bib (added)
-
theses/aaron_moss_PhD/phd/background.tex (modified) (1 diff)
-
theses/aaron_moss_PhD/phd/generic-types.tex (modified) (1 diff)
-
theses/aaron_moss_PhD/phd/thesis.tex (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
doc/bibliography/pl.bib
r3271166 r6e9ffd1 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/phd/Makefile
r3271166 r6e9ffd1 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 1 LATEX = pdflatex -interaction=nonstopmode 2 BIBTEX = bibtex 7 3 8 4 BASE = thesis 9 5 DOCUMENT = ${BASE}.pdf 10 BIBFILE = ${BIBDIR}/pl.bib 6 AUX = ${BASE}.aux ${BASE}.bbl ${BASE}.blg ${BASE}.log ${BASE}.out ${BASE}.toc 11 7 12 8 SOURCES = ${addsuffix .tex, \ … … 27 23 28 24 clean : 29 @rm -f v ${BUILD}/*25 @rm -frv ${DOCUMENT} ${AUX} 30 26 31 27 wc : 32 28 wc ${SOURCES} 33 29 34 ${DOCUMENT} : ${SOURCES} ${BUILD}30 ${DOCUMENT} : ${SOURCES} 35 31 ${LATEX} ${BASE} 36 32 ${LATEX} ${BASE} 37 33 38 rebuild-refs : ${SOURCES} ${BIBFILE} ${BUILD}34 rebuild-refs : ${SOURCES} aaron-thesis.bib 39 35 ${LATEX} ${BASE} 40 ${BIBTEX} ${B UILD}/${BASE}36 ${BIBTEX} ${BASE} 41 37 ${LATEX} ${BASE} 42 38 ${LATEX} ${BASE} 43 44 ${BUILD}:45 mkdir -p ${BUILD} -
doc/theses/aaron_moss_PhD/phd/background.tex
r3271166 r6e9ffd1 1 \chapter{ \CFA{}}1 \chapter{Background} 2 2 3 3 \CFA{} adds a number of features to C, some of them providing significant increases to the expressive power of the language, but all designed to maintain the existing procedural programming paradigm of C and to be as orthogonal as possible to each other. -
doc/theses/aaron_moss_PhD/phd/generic-types.tex
r3271166 r6e9ffd1 4 4 Talk about generic types. Pull from Moss~\etal\cite{Moss18}. 5 5 6 % TODO discuss layout function algorithm, application to separate compilation7 8 6 % TODO mention impetus for zero_t design 9 7 -
doc/theses/aaron_moss_PhD/phd/thesis.tex
r3271166 r6e9ffd1 141 141 \addcontentsline{toc}{chapter}{\textbf{References}} 142 142 143 \bibliography{ pl}143 \bibliography{aaron-thesis} 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.