Changeset 83e680d
- Timestamp:
- Aug 6, 2017, 9:00:49 AM (7 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 7f617cf0
- Parents:
- 8d91e6a
- Location:
- doc/refrat
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/refrat/Makefile
r8d91e6a r83e680d 9 9 SOURCES = ${addsuffix .tex, \ 10 10 refrat \ 11 keywords \ 11 12 } 12 13 -
doc/refrat/refrat.tex
r8d91e6a r83e680d 11 11 %% Created On : Wed Apr 6 14:52:25 2016 12 12 %% Last Modified By : Peter A. Buhr 13 %% Last Modified On : Fri Jun 2 10:43:14201714 %% Update Count : 8313 %% Last Modified On : Sun Aug 6 08:53:08 2017 14 %% Update Count : 99 15 15 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 16 16 17 17 % requires tex packages: texlive-base texlive-latex-base tex-common texlive-humanities texlive-latex-extra texlive-fonts-recommended 18 18 19 \documentclass[openright,twoside ]{report}19 \documentclass[openright,twoside,11pt]{report} 20 20 21 21 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% … … 37 37 \usepackage{mathptmx} % better math font with "times" 38 38 \usepackage[usenames]{color} 39 \usepackage[pagewise]{lineno} 40 \renewcommand{\linenumberfont}{\scriptsize\sffamily} 41 \input{common} % bespoke macros used in the document 39 \input{common} % common CFA document macros 42 40 \usepackage[dvips,plainpages=false,pdfpagelabels,pdfpagemode=UseNone,colorlinks=true,pagebackref=true,linkcolor=blue,citecolor=blue,urlcolor=blue,pagebackref=true,breaklinks=true]{hyperref} 43 41 \usepackage{breakurl} 44 42 \renewcommand{\UrlFont}{\small\sf} 45 43 44 \usepackage[pagewise]{lineno} 45 \renewcommand{\linenumberfont}{\scriptsize\sffamily} 46 \usepackage[firstpage]{draftwatermark} 47 \SetWatermarkLightness{0.9} 48 49 % Default underscore is too low and wide. Cannot use lstlisting "literate" as replacing underscore 50 % removes it as a variable-name character so keywords in variables are highlighted. MUST APPEAR 51 % AFTER HYPERREF. 52 \renewcommand{\textunderscore}{\leavevmode\makebox[1.2ex][c]{\rule{1ex}{0.075ex}}} 53 46 54 \setlength{\topmargin}{-0.45in} % move running title into header 47 55 \setlength{\headsep}{0.25in} … … 50 58 51 59 \CFAStyle % use default CFA format-style 60 \lstnewenvironment{C++}[1][] % use C++ style 61 {\lstset{language=C++,moredelim=**[is][\protect\color{red}]{®}{®}#1}} 62 {} 52 63 53 64 % inline code ©...© (copyright symbol) emacs: C-q M-) … … 87 98 88 99 \date{ 89 DRAFT \\\today100 \today 90 101 }% date 91 102 … … 112 123 113 124 \clearpage 125 \thispagestyle{plain} 114 126 \pdfbookmark[1]{Contents}{section} 115 127 \tableofcontents 116 128 117 129 \clearpage 130 \thispagestyle{plain} 118 131 \pagenumbering{arabic} 119 132 … … 417 430 418 431 \begin{syntax} 419 \oldlhs{keyword} 420 \rhs ©forall© 421 \rhs ©lvalue© 422 \rhs ©trait© 423 \rhs ©dtype© 424 \rhs ©ftype© 425 \rhs ©otype© 432 \lhs{keyword} one of 433 \rhs \dots 434 \rhs \input{keywords} 426 435 \end{syntax} 427 436
Note: See TracChangeset
for help on using the changeset viewer.