Changeset 9724df0 for doc/refrat
- Timestamp:
- Jun 20, 2016, 10:52:40 AM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 1f17e07, a0dcd2e, f6d4204
- Parents:
- 1da317b
- Location:
- doc/refrat
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/refrat/Makefile
r1da317b r9724df0 1 1 ## Define the appropriate configuration variables. 2 2 3 TeXLIB = .:../ bibliography/:../LaTeXmacros/:3 TeXLIB = .:../LaTeXmacros:../LaTeXmacros/listings:../LaTeXmacros/enumitem:../bibliography/: 4 4 LaTeX = TEXINPUTS=${TeXLIB} && export TEXINPUTS && latex 5 5 BibTeX = BIBINPUTS=${TeXLIB} && export BIBINPUTS && bibtex -
doc/refrat/refrat.tex
r1da317b r9724df0 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 3 09:43:48201614 %% Update Count : 6613 %% Last Modified On : Sat Jun 18 19:21:30 2016 14 %% Update Count : 74 15 15 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 16 16 … … 18 18 19 19 % inline code ©...© (copyright symbol) emacs: C-q M-) 20 % red highlighting ®...® (registered trademark sumbol) emacs: C-q M-. 21 % latex escape §...§ (section symbol) emacs: C-q M-' 20 % red highlighting ®...® (registered trademark symbol) emacs: C-q M-. 21 % blue highlighting ß...ß (sharp s symbol) emacs: C-q M-_ 22 % green highlighting ¢...¢ (cent symbol) emacs: C-q M-" 23 % LaTex escape §...§ (section symbol) emacs: C-q M-' 22 24 % keyword escape ¶...¶ (pilcrow symbol) emacs: C-q M-^ 23 25 % math escape $...$ (dollar symbol) … … 32 34 \usepackage{fullpage,times,comment} 33 35 \usepackage{epic,eepic} 34 \usepackage{upquote} % switch curled `' to straight `'36 \usepackage{upquote} % switch curled `'" to straight 35 37 \usepackage{xspace} 36 38 \usepackage{varioref} % extended references 37 39 \usepackage{listings} % format program code 38 \usepackage {footmisc}% support label/reference in footnote40 \usepackage[flushmargin]{footmisc} % support label/reference in footnote 39 41 \usepackage{latexsym} % \Box glyph 40 42 \usepackage{mathptmx} % better math font with "times" 43 \usepackage[usenames]{color} 41 44 \usepackage[pagewise]{lineno} 42 45 \renewcommand{\linenumberfont}{\scriptsize\sffamily} 46 \input{common} % bespoke macros used in the document 43 47 \usepackage[dvips,plainpages=false,pdfpagelabels,pdfpagemode=UseNone,colorlinks=true,pagebackref=true,linkcolor=blue,citecolor=blue,urlcolor=blue,pagebackref=true,breaklinks=true]{hyperref} 44 48 \usepackage{breakurl} … … 47 51 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 48 52 49 % Bespoke macros used in the document.50 \input{common}51 52 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%53 54 53 % Names used in the document. 55 54 56 55 \newcommand{\Version}{1.0.0} 56 57 \newcommand{\Textbf}[2][red]{{\color{#1}{\textbf{#2}}}} 58 \newcommand{\Emph}[2][red]{{\color{#1}\textbf{\emph{#2}}}} 59 \newcommand{\R}[1]{\Textbf{#1}} 60 \newcommand{\B}[1]{{\Textbf[blue]{#1}}} 61 \newcommand{\G}[1]{{\Textbf[OliveGreen]{#1}}} 57 62 58 63 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% … … 76 81 }% author 77 82 \date{ 78 DRAFT\\\today 83 DRAFT \\ 84 \today 79 85 }% date 80 86 … … 390 396 \end{itemize} 391 397 398 392 399 \section{Lexical elements} 400 401 393 402 \subsection{Keywords} 403 394 404 \begin{syntax} 395 405 \oldlhs{keyword} 396 397 398 399 400 401 406 \rhs ©forall© 407 \rhs ©lvalue© 408 \rhs ©trait© 409 \rhs ©dtype© 410 \rhs ©ftype© 411 \rhs ©otype© 402 412 \end{syntax} 403 413 … … 1107 1117 \begin{syntax} 1108 1118 \lhs{unary-expression} 1109 \rhs \nonterm{postfix-expression} 1110 \rhs ©++© \nonterm{unary-expression} 1111 \rhs ©--© \nonterm{unary-expression} 1112 \rhs \nonterm{unary-operator} \nonterm{cast-expression} 1113 \rhs ©sizeof© \nonterm{unary-expression} 1114 \rhs ©sizeof© ©(© \nonterm{type-name} ©)© 1115 \lhs{unary-operator} one of \rhs ©&© ©*© ©+© ©-© ©~© ©!© 1119 \rhs \nonterm{postfix-expression} 1120 \rhs ©++© \nonterm{unary-expression} 1121 \rhs ©--© \nonterm{unary-expression} 1122 \rhs \nonterm{unary-operator} \nonterm{cast-expression} 1123 \rhs ©sizeof© \nonterm{unary-expression} 1124 \rhs ©sizeof© ©(© \nonterm{type-name} ©)© 1125 \lhs{unary-operator} one of 1126 \rhs ©&© ©*© ©+© ©-© ©~© ©!© 1116 1127 \end{syntax} 1117 1128
Note: See TracChangeset
for help on using the changeset viewer.