Changeset 37e9c1d for doc/theses


Ignore:
Timestamp:
Apr 3, 2022, 8:29:57 AM (2 years ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
ADT, ast-experimental, enum, master, pthread-emulation, qualifiedEnum
Children:
1a9592a
Parents:
85f9c77
Message:

harmonize latex macros and Makefiles, small wording correction

Location:
doc/theses
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • doc/theses/mike_brooks_MMath/uw-ethesis.tex

    r85f9c77 r37e9c1d  
    6060% For hyperlinked PDF, suitable for viewing on a computer, use this:
    6161\documentclass[letterpaper,12pt,titlepage,oneside,final]{book}
    62 \usepackage[T1]{fontenc}
     62\usepackage[T1]{fontenc}        % Latin-1 => 256-bit characters, => | not dash, <> not Spanish question marks
    6363
    6464% For PDF, suitable for double-sided printing, change the PrintVersion variable below to "true" and use this \documentclass line instead of the one above:
  • doc/theses/mubeen_zulfiqar_MMath/Makefile

    r85f9c77 r37e9c1d  
    1 # directory for latex clutter files
     1# Configuration variables
     2
    23Build = build
    34Figures = figures
    45Pictures = pictures
     6
    57TeXSRC = ${wildcard *.tex}
    68FigSRC = ${notdir ${wildcard ${Figures}/*.fig}}
    79PicSRC = ${notdir ${wildcard ${Pictures}/*.fig}}
    8 BIBSRC = ${wildcard *.bib}
    9 TeXLIB = .:../../LaTeXmacros:${Build}: # common latex macros
    10 BibLIB = .:../../bibliography # common citation repository
     10BibSRC = ${wildcard *.bib}
     11
     12TeXLIB = .:../../LaTeXmacros:${Build}:          # common latex macros
     13BibLIB = .:../../bibliography                   # common citation repository
    1114
    1215MAKEFLAGS = --no-print-directory # --silent
    1316VPATH = ${Build} ${Figures} ${Pictures} # extra search path for file names used in document
    1417
    15 ### Special Rules:
     18DOCUMENT = uw-ethesis.pdf
     19BASE = ${basename ${DOCUMENT}}                  # remove suffix
    1620
    17 .PHONY: all clean
    18 .PRECIOUS: %.dvi %.ps # do not delete intermediate files
    19 
    20 ### Commands:
     21# Commands
    2122
    2223LaTeX = TEXINPUTS=${TeXLIB} && export TEXINPUTS && latex -halt-on-error -output-directory=${Build}
    23 BibTeX = BIBINPUTS=${BibLIB} bibtex
     24BibTeX = BIBINPUTS=${BibLIB} && export BIBINPUTS && bibtex
    2425#Glossary = INDEXSTYLE=${Build} makeglossaries-lite
    2526
    26 ### Rules and Recipes:
     27# Rules and Recipes
    2728
    28 DOC = uw-ethesis.pdf
    29 BASE = ${DOC:%.pdf=%} # remove suffix
     29.PHONY : all clean                              # not file names
     30.PRECIOUS: %.dvi %.ps # do not delete intermediate files
     31.ONESHELL :
    3032
    31 all: ${DOC}
     33all : ${DOCUMENT}
    3234
    33 clean:
    34         @rm -frv ${DOC} ${Build}
     35clean :
     36        @rm -frv ${DOCUMENT} ${Build}
    3537
    36 # File Dependencies #
     38# File Dependencies
    3739
    38 %.dvi : ${TeXSRC} ${FigSRC:%.fig=%.tex} ${PicSRC:%.fig=%.pstex} ${BIBSRC} Makefile | ${Build}
     40%.dvi : ${TeXSRC} ${FigSRC:%.fig=%.tex} ${PicSRC:%.fig=%.pstex} ${BibSRC} Makefile | ${Build}
    3941        ${LaTeX} ${BASE}
    4042        ${BibTeX} ${Build}/${BASE}
    4143        ${LaTeX} ${BASE}
    42         # if nedded, run latex again to get citations
     44        # if needed, run latex again to get citations
    4345        if fgrep -s "LaTeX Warning: Citation" ${basename $@}.log ; then ${LaTeX} ${BASE} ; fi
    4446#       ${Glossary} ${Build}/${BASE}
     
    4648
    4749${Build}:
    48         mkdir $@
     50        mkdir -p $@
    4951
    5052%.pdf : ${Build}/%.ps | ${Build}
  • doc/theses/mubeen_zulfiqar_MMath/background.tex

    r85f9c77 r37e9c1d  
    754754Finally, lock-free implementations have greater complexity and hardware dependency.
    755755Lock-free algorithms can be applied most easily to simple free-lists, \eg remote free-list, to allow lock-free insertion and removal from the head of a stack.
    756 Implementing lock-free operations for more complex data-structures (queue~\cite{Valois94}/deque~\cite{Sundell08}) is correspondinglyy more complex.
     756Implementing lock-free operations for more complex data-structures (queue~\cite{Valois94}/deque~\cite{Sundell08}) is correspondingly more complex.
    757757Michael~\cite{Michael04} and Gidenstam \etal \cite{Gidenstam05} have created lock-free variations of the Hoard allocator.
  • doc/theses/mubeen_zulfiqar_MMath/uw-ethesis.tex

    r85f9c77 r37e9c1d  
    6060% For hyperlinked PDF, suitable for viewing on a computer, use this:
    6161\documentclass[letterpaper,12pt,titlepage,oneside,final]{book}
     62\usepackage[T1]{fontenc}        % Latin-1 => 256-bit characters, => | not dash, <> not Spanish question marks
    6263
    6364% For PDF, suitable for double-sided printing, change the PrintVersion variable below to "true" and use this \documentclass line instead of the one above:
     
    171172\input{common}
    172173%\usepackageinput{common}
    173 \CFAStyle                                               % CFA code-style for all languages
     174\CFAStyle                                               % CFA code-style
     175\lstset{language=CFA}                                   % default language
    174176\lstset{basicstyle=\linespread{0.9}\sf}                 % CFA typewriter font
    175177\newcommand{\uC}{$\mu$\CC}
Note: See TracChangeset for help on using the changeset viewer.