[b721578] | 1 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -*- Mode: Latex -*- %%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
---|
| 2 | %%
|
---|
| 3 | %% Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
|
---|
| 4 | %%
|
---|
| 5 | %% The contents of this file are covered under the licence agreement in the
|
---|
| 6 | %% file "LICENCE" distributed with Cforall.
|
---|
| 7 | %%
|
---|
| 8 | %% common.tex --
|
---|
| 9 | %%
|
---|
| 10 | %% Author : Peter A. Buhr
|
---|
| 11 | %% Created On : Sat Apr 9 10:06:17 2016
|
---|
| 12 | %% Last Modified By : Peter A. Buhr
|
---|
[cc022a9] | 13 | %% Last Modified On : Mon May 31 09:08:37 2021
|
---|
| 14 | %% Update Count : 565
|
---|
[b721578] | 15 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
---|
| 16 |
|
---|
| 17 | \setlength{\textheight}{9in}
|
---|
| 18 | %\oddsidemargin 0.0in
|
---|
| 19 | \renewcommand{\topfraction}{0.8} % float must be greater than X of the page before it is forced onto its own page
|
---|
| 20 | \renewcommand{\bottomfraction}{0.8} % float must be greater than X of the page before it is forced onto its own page
|
---|
| 21 | \renewcommand{\floatpagefraction}{0.8} % float must be greater than X of the page before it is forced onto its own page
|
---|
| 22 | \renewcommand{\textfraction}{0.0} % the entire page maybe devoted to floats with no text on the page at all
|
---|
| 23 |
|
---|
| 24 | \lefthyphenmin=4 % hyphen only after 4 characters
|
---|
| 25 | \righthyphenmin=4
|
---|
| 26 |
|
---|
| 27 | \usepackage[ignoredisplayed]{enumitem} % do not affect trivlist
|
---|
| 28 | \setlist{labelsep=1ex}% global
|
---|
| 29 | \setlist[itemize]{topsep=0.5ex,parsep=0.25ex,itemsep=0.25ex,listparindent=\parindent,leftmargin=\parindent}% global
|
---|
| 30 | \setlist[itemize,1]{label=\textbullet}% local
|
---|
| 31 | %\renewcommand{\labelitemi}{{\raisebox{0.25ex}{\footnotesize$\bullet$}}}
|
---|
| 32 | \setlist[enumerate]{listparindent=\parindent}% global
|
---|
| 33 | \setlist[enumerate,2]{leftmargin=\parindent,labelsep=*,align=parleft,label=\alph*.}% local
|
---|
| 34 | \setlist[description]{topsep=0.5ex,itemsep=0pt,listparindent=\parindent,leftmargin=\parindent,labelsep=1.5ex}
|
---|
| 35 |
|
---|
| 36 | % Names used in the document.
|
---|
| 37 |
|
---|
| 38 | \usepackage{xspace}
|
---|
[cc022a9] | 39 | \newcommand{\CFAIcon}{\textsf{C\raisebox{\depth}{\rotatebox{180}A}}} % Cforall icon
|
---|
[b721578] | 40 | \newcommand{\CFA}{\protect\CFAIcon\xspace} % CFA symbolic name
|
---|
| 41 | \newcommand{\CFL}{\textrm{Cforall}\xspace} % Cforall non-icon name
|
---|
| 42 | \newcommand{\Celeven}{\textrm{C11}\xspace} % C11 symbolic name
|
---|
| 43 | \newcommand{\CCIcon}{\textrm{C}\kern-.1em\hbox{+\kern-.25em+}} % C++ icon
|
---|
| 44 | \newcommand{\CC}[1][]{\protect\CCIcon{#1}\xspace} % C++ symbolic name
|
---|
| 45 | % numbers disallowed in latex variables names => use number names
|
---|
| 46 | \newcommand{\CCeleven}{\protect\CCIcon{11}\xspace} % C++11 symbolic name
|
---|
| 47 | \newcommand{\CCfourteen}{\protect\CCIcon{14}\xspace} % C++14 symbolic name
|
---|
| 48 | \newcommand{\CCseventeen}{\protect\CCIcon{17}\xspace} % C++17 symbolic name
|
---|
| 49 | \newcommand{\CCtwenty}{\protect\CCIcon{20}\xspace} % C++20 symbolic name
|
---|
| 50 | \newcommand{\Csharp}{C\raisebox{-0.7ex}{\Large$^\sharp$}\xspace} % C# symbolic name
|
---|
| 51 |
|
---|
| 52 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
---|
| 53 |
|
---|
| 54 | % remove special-character warning in PDF side-bar names
|
---|
| 55 | \@ifpackageloaded{hyperref}{
|
---|
| 56 | \pdfstringdefDisableCommands{
|
---|
| 57 | \def\CFA{\CFL}
|
---|
| 58 | \def\Celeven{C11\xspace}
|
---|
| 59 | \def\CC{C++\xspace}
|
---|
| 60 | \def\CCeleven{C++11\xspace}
|
---|
| 61 | \def\CCfourteen{C++14\xspace}
|
---|
| 62 | \def\CCseventeen{C++17\xspace}
|
---|
| 63 | \def\CCtwenty{C++20\xspace}
|
---|
| 64 | \def\Csharp{C\#\xspace}
|
---|
| 65 | \def\lstinline{\xspace}% must use {} as delimiters, e.g., \lstinline{...}
|
---|
| 66 | }{}
|
---|
| 67 | }
|
---|
| 68 |
|
---|
| 69 | % parindent is relative, i.e., toggled on/off in environments like itemize, so store the value for
|
---|
| 70 | % use rather than use \parident directly.
|
---|
| 71 | \newlength{\parindentlnth}
|
---|
| 72 | \setlength{\parindentlnth}{\parindent}
|
---|
| 73 |
|
---|
[cc022a9] | 74 | \usepackage{pslatex} % reduce size of san serif font
|
---|
| 75 | \usepackage{relsize} % must be after change to small or selects old size
|
---|
[b721578] | 76 | \usepackage{rotating}
|
---|
[cc022a9] | 77 | \usepackage{calc} % latex arithmetic
|
---|
[b721578] | 78 |
|
---|
| 79 | % reduce size of chapter/section titles
|
---|
| 80 | \def\@makechapterhead#1{%
|
---|
| 81 | \vspace*{50\p@}%
|
---|
| 82 | {\parindent \z@ \raggedright \normalfont
|
---|
| 83 | \ifnum \c@secnumdepth >\m@ne
|
---|
| 84 | \large\bfseries \@chapapp\space \thechapter
|
---|
| 85 | \par\nobreak
|
---|
| 86 | \vskip 5\p@
|
---|
| 87 | \fi
|
---|
| 88 | \interlinepenalty\@M
|
---|
| 89 | \Large \bfseries #1\par\nobreak
|
---|
| 90 | \vskip 50\p@
|
---|
| 91 | }}
|
---|
| 92 | \def\@makeschapterhead#1{%
|
---|
| 93 | \vspace*{50\p@}%
|
---|
| 94 | {\parindent \z@ \raggedright
|
---|
| 95 | \normalfont
|
---|
| 96 | \interlinepenalty\@M
|
---|
| 97 | \Large \bfseries #1\par\nobreak
|
---|
| 98 | \vskip 50\p@
|
---|
| 99 | }}
|
---|
| 100 | \renewcommand\section{\@startsection{section}{1}{\z@}{-3.0ex \@plus -1ex \@minus -.2ex}{1.5ex \@plus .2ex}{\normalfont\large\bfseries}}
|
---|
| 101 | \renewcommand\subsection{\@startsection{subsection}{2}{\z@}{-2.75ex \@plus -1ex \@minus -.2ex}{1.25ex \@plus .2ex}{\normalfont\normalsize\bfseries}}
|
---|
| 102 | \renewcommand\subsubsection{\@startsection{subsubsection}{3}{\z@}{-2.5ex \@plus -1ex \@minus -.2ex}{1.0ex \@plus .2ex}{\normalfont\normalsize\bfseries}}
|
---|
| 103 | \renewcommand\paragraph{\@startsection{paragraph}{4}{\z@}{-2.0ex \@plus -1ex \@minus -.2ex}{-1em}{\normalfont\normalsize\bfseries}}
|
---|
| 104 | \renewcommand\subparagraph{\@startsection{subparagraph}{4}{\z@}{-1.5ex \@plus -1ex \@minus -.2ex}{-1em}{\normalfont\normalsize\bfseries\itshape}}
|
---|
| 105 |
|
---|
| 106 | % index macros
|
---|
| 107 | \newcommand{\italic}[1]{\emph{\hyperpage{#1}}}
|
---|
| 108 | \newcommand{\Definition}[1]{\textbf{\hyperpage{#1}}}
|
---|
| 109 | \newcommand{\see}[1]{(see #1)}
|
---|
| 110 |
|
---|
| 111 | % Define some commands that produce formatted index entries suitable for cross-references.
|
---|
| 112 | % ``\spec'' produces entries for specifications of entities. ``\impl'' produces entries for their
|
---|
| 113 | % implementations, and ``\use'' for their uses.
|
---|
| 114 |
|
---|
| 115 | % \newcommand{\bold}[1]{{\bf #1}}
|
---|
| 116 | % \def\spec{\@bsphack\begingroup
|
---|
| 117 | % \def\protect##1{\string##1\space}\@sanitize
|
---|
| 118 | % \@wrxref{|bold}}
|
---|
| 119 | \def\impl{\@bsphack\begingroup
|
---|
| 120 | \def\protect##1{\string##1\space}\@sanitize
|
---|
| 121 | \@wrxref{|Definition}}
|
---|
| 122 | \newcommand{\indexcode}[1]{{\lstinline$#1$}}
|
---|
| 123 | \def\use{\@bsphack\begingroup
|
---|
| 124 | \def\protect##1{\string##1\space}\@sanitize
|
---|
| 125 | \@wrxref{|hyperpage}}
|
---|
| 126 | \def\@wrxref#1#2{\let\thepage\relax
|
---|
| 127 | \xdef\@gtempa{\write\@indexfile{\string
|
---|
| 128 | \indexentry{#2@{\lstinline$#2$}#1}{\thepage}}}\endgroup\@gtempa
|
---|
| 129 | \if@nobreak \ifvmode\nobreak\fi\fi\@esphack}
|
---|
| 130 | %\newcommand{\use}[1]{\index{#1@{\lstinline$#1$}}}
|
---|
| 131 | %\newcommand{\impl}[1]{\index{\protect#1@{\lstinline$\protect#1$}|Definition}}
|
---|
| 132 |
|
---|
| 133 | % inline text and lowercase index: \Index{inline and lowercase index text}
|
---|
| 134 | \newcommand{\Index}{\@ifstar\@sIndex\@Index}
|
---|
| 135 | % inline text and as-in index: \Index[as-is index text]{inline text}
|
---|
| 136 | \newcommand{\@Index}[2][\@empty]{\lowercase{\def\temp{#2}}#2\ifx#1\@empty\index{\temp}\else\index{#1@{\protect#2}}\fi}
|
---|
| 137 | % inline text but index with different as-is text: \Index[index text]{inline text}
|
---|
| 138 | \newcommand{\@sIndex}[2][\@empty]{#2\ifx#1\@empty\index{#2}\else\index{#1@{\protect#2}}\fi}
|
---|
| 139 |
|
---|
| 140 | % inline text and code index (cannot use ©)
|
---|
| 141 | \newcommand{\Indexc}[2][\@empty]{\lstinline[#1]$#2$\index{#2@\lstinline[#1]$#2$}}
|
---|
| 142 | % code index (cannot use ©)
|
---|
| 143 | \newcommand{\indexc}[2][\@empty]{\index{#2@\lstinline[#1]$#2$}}
|
---|
| 144 |
|
---|
| 145 | % Denote newterms in particular font and index them without particular font and in lowercase, e.g., \newterm{abc}.
|
---|
| 146 | % The option parameter provides an index term different from the new term, e.g., \newterm[\texttt{abc}]{abc}
|
---|
| 147 | % The star version does not lowercase the index information, e.g., \newterm*{IBM}.
|
---|
| 148 | \newcommand{\newtermFontInline}{\emph}
|
---|
| 149 | \newcommand{\newterm}{\protect\@ifstar\@snewterm\@newterm}
|
---|
| 150 | \newcommand{\@newterm}[2][\@empty]{\lowercase{\def\temp{#2}}{\newtermFontInline{#2}}\ifx#1\@empty\index{\temp}\else\index{#1@{\protect#2}}\fi}
|
---|
| 151 | \newcommand{\@snewterm}[2][\@empty]{{\newtermFontInline{#2}}\ifx#1\@empty\index{#2}\else\index{#1@{\protect#2}}\fi}
|
---|
| 152 |
|
---|
| 153 | % Latin abbreviation
|
---|
| 154 | \newcommand{\abbrevFont}{\textit} % set empty for no italics
|
---|
| 155 | % If not followed by a comma or colon, add a comma.
|
---|
| 156 | \newcommand{\CheckCommaColon}{\@ifnextchar{,}{}{\@ifnextchar{:}{}{,\xspace}}}
|
---|
| 157 | % If not followed by a period, add a period.
|
---|
| 158 | \newcommand{\CheckPeriod}{\@ifnextchar{.}{}{.\xspace}}
|
---|
| 159 |
|
---|
| 160 | \newcommand{\EG}{\abbrevFont{e}.\abbrevFont{g}.}
|
---|
| 161 | \newcommand{\eg}{\EG\CheckCommaColon}
|
---|
[cc022a9] | 162 |
|
---|
[b721578] | 163 | \newcommand{\IE}{\abbrevFont{i}.\abbrevFont{e}.}
|
---|
| 164 | \newcommand{\ie}{\IE\CheckCommaColon}
|
---|
[cc022a9] | 165 |
|
---|
[b721578] | 166 | \newcommand{\ETC}{\abbrevFont{etc}}
|
---|
| 167 | \newcommand{\etc}{\ETC\CheckPeriod}
|
---|
[cc022a9] | 168 |
|
---|
[b721578] | 169 | \newcommand{\ETAL}{\abbrevFont{et}~\abbrevFont{al}}
|
---|
| 170 | \newcommand{\etal}{\ETAL\CheckPeriod}
|
---|
[cc022a9] | 171 |
|
---|
[b721578] | 172 | \newcommand{\VIZ}{\abbrevFont{viz}}
|
---|
| 173 | \newcommand{\viz}{\VIZ\CheckPeriod}
|
---|
| 174 |
|
---|
| 175 | \newenvironment{cquote}{%
|
---|
| 176 | \list{}{\lstset{resetmargins=true,aboveskip=0pt,belowskip=0pt}\topsep=4pt\parsep=0pt\leftmargin=\parindentlnth\rightmargin\leftmargin}%
|
---|
| 177 | \item\relax
|
---|
| 178 | }{%
|
---|
| 179 | \endlist
|
---|
| 180 | }% cquote
|
---|
| 181 |
|
---|
| 182 | \newenvironment{rationale}{%
|
---|
| 183 | \begin{cquote}\noindent$\Box$\enspace
|
---|
| 184 | }{%
|
---|
| 185 | \hfill\enspace$\Box$\end{cquote}
|
---|
| 186 | }%
|
---|
| 187 |
|
---|
| 188 | % blocks and titles
|
---|
| 189 | \newcommand{\define}[1]{\emph{#1\/}\index{#1}}
|
---|
| 190 | \newcommand{\rewriterules}{\paragraph{Rewrite Rules}~\par\noindent}
|
---|
| 191 | \newcommand{\examples}{\paragraph{Examples}~\par\noindent}
|
---|
| 192 | \newcommand{\semantics}{\paragraph{Semantics}~\par\noindent}
|
---|
| 193 | \newcommand{\constraints}{\paragraph{Constraints}~\par\noindent}
|
---|
| 194 | \newcommand{\predefined}{\paragraph{Predefined Identifiers}~\par\noindent}
|
---|
| 195 |
|
---|
| 196 | % BNF macros
|
---|
| 197 | \newenvironment{syntax}{
|
---|
| 198 | \paragraph{Syntax}
|
---|
| 199 | \begin{cquote}
|
---|
| 200 | \begin{description}[noitemsep,leftmargin=\parindentlnth]
|
---|
| 201 | }{
|
---|
| 202 | \end{description}
|
---|
| 203 | \end{cquote}
|
---|
| 204 | }
|
---|
| 205 | % \def\syntax{\paragraph{Syntax}\trivlist\parindent=.5in\item[\hskip.5in]}
|
---|
| 206 | %\let\endsyntax=\endtrivlist
|
---|
| 207 | \newcommand{\lhs}[1]{\item[\emph{#1:}\index{#1@{\emph{#1}}|italic}]~\ignorespaces}
|
---|
| 208 | \newcommand{\oldlhs}[1]{\item[\emph{#1:}\index{#1@{\emph{#1}}|italic}~\dots]~}
|
---|
| 209 | \newcommand{\rhs}{\hfil\newline}
|
---|
| 210 | \newcommand{\nonterm}[1]{\emph{#1}\index{#1@{\emph{#1}}|italic}}
|
---|
| 211 | \newcommand{\opt}{$_{opt}$\ }
|
---|
| 212 |
|
---|
| 213 | \usepackage{varioref} % extended references
|
---|
| 214 | % adjust varioref package with default "section" and "page" titles, and optional title with faraway page numbers
|
---|
| 215 | % \VRef{label} => Section 2.7, \VPageref{label} => page 17
|
---|
| 216 | % \VRef[Figure]{label} => Figure 3.4, \VPageref{label} => page 17
|
---|
| 217 | \renewcommand{\reftextfaceafter}{\unskip}
|
---|
| 218 | \renewcommand{\reftextfacebefore}{\unskip}
|
---|
| 219 | \renewcommand{\reftextafter}{\unskip}
|
---|
| 220 | \renewcommand{\reftextbefore}{\unskip}
|
---|
| 221 | \renewcommand{\reftextfaraway}[1]{\unskip, p.~\pageref{#1}}
|
---|
| 222 | \renewcommand{\reftextpagerange}[2]{\unskip, pp.~\pageref{#1}--\pageref{#2}}
|
---|
| 223 | \newcommand{\VRef}[2][Section]{\ifx#1\@empty\else{#1}\nobreakspace\fi\vref{#2}}
|
---|
| 224 | \newcommand{\VPageref}[2][page]{\ifx#1\@empty\else{#1}\nobreakspace\fi\pageref{#2}}
|
---|
| 225 |
|
---|
| 226 | \let\Oldthebibliography\thebibliography
|
---|
| 227 | \renewcommand\thebibliography[1]{
|
---|
| 228 | \Oldthebibliography{#1}
|
---|
| 229 | \setlength{\parskip}{0pt} % reduce vertical spacing between references
|
---|
| 230 | \setlength{\itemsep}{5pt plus 0.3ex}
|
---|
| 231 | }%
|
---|
| 232 |
|
---|
| 233 | \usepackage{listings} % format program code
|
---|
| 234 | \usepackage{lstlang}
|
---|
| 235 |
|
---|
| 236 | \newcommand{\LstBasicStyle}[1]{{\lst@basicstyle{#1}}}
|
---|
| 237 | \newcommand{\LstKeywordStyle}[1]{{\lst@basicstyle{\lst@keywordstyle{#1}}}}
|
---|
| 238 | \newcommand{\LstCommentStyle}[1]{{\lst@basicstyle{\lst@commentstyle{#1}}}}
|
---|
| 239 | \newcommand{\LstStringStyle}[1]{{\lst@basicstyle{\lst@stringstyle{#1}}}}
|
---|
| 240 |
|
---|
| 241 | \newlength{\gcolumnposn} % temporary hack because lstlisting does not handle tabs correctly
|
---|
| 242 | \newlength{\columnposn}
|
---|
| 243 | \setlength{\gcolumnposn}{2.75in}
|
---|
| 244 | \setlength{\columnposn}{\gcolumnposn}
|
---|
| 245 | \newcommand{\C}[2][\@empty]{\ifx#1\@empty\else\global\setlength{\columnposn}{#1}\global\columnposn=\columnposn\fi\hfill\makebox[\textwidth-\columnposn][l]{\lst@basicstyle{\LstCommentStyle{#2}}}}
|
---|
| 246 | \newcommand{\CRT}{\global\columnposn=\gcolumnposn}
|
---|
| 247 |
|
---|
| 248 | % allow escape sequence in lstinline
|
---|
| 249 | %\usepackage{etoolbox}
|
---|
| 250 | %\patchcmd{\lsthk@TextStyle}{\let\lst@DefEsc\@empty}{}{}{\errmessage{failed to patch}}
|
---|
| 251 |
|
---|
| 252 | % allow adding to lst literate
|
---|
| 253 | \def\addToLiterate#1{\protect\edef\lst@literate{\unexpanded\expandafter{\lst@literate}\unexpanded{#1}}}
|
---|
| 254 | \lst@Key{add to literate}{}{\addToLiterate{#1}}
|
---|
| 255 |
|
---|
| 256 | \newcommand{\CFAStyle}{%
|
---|
| 257 | \lstset{
|
---|
| 258 | columns=fullflexible,
|
---|
| 259 | basicstyle=\linespread{0.9}\sf, % reduce line spacing and use sanserif font
|
---|
| 260 | stringstyle=\tt, % use typewriter font
|
---|
| 261 | tabsize=5, % N space tabbing
|
---|
| 262 | xleftmargin=\parindentlnth, % indent code to paragraph indentation
|
---|
| 263 | extendedchars=true, % allow ASCII characters in the range 128-255
|
---|
| 264 | escapechar=\$, % LaTeX escape in CFA code §...§ (section symbol), emacs: C-q M-'
|
---|
| 265 | mathescape=false, % LaTeX math escape in CFA code $...$
|
---|
| 266 | keepspaces=true, %
|
---|
| 267 | showstringspaces=false, % do not show spaces with cup
|
---|
| 268 | showlines=true, % show blank lines at end of code
|
---|
| 269 | aboveskip=4pt, % spacing above/below code block
|
---|
| 270 | belowskip=2pt,
|
---|
| 271 | numberstyle=\footnotesize\sf, % numbering style
|
---|
| 272 | % replace/adjust listing characters that look bad in sanserif
|
---|
[cc022a9] | 273 | literate=
|
---|
| 274 | {-}{\makebox[1ex][c]{\raisebox{0.4ex}{\rule{0.75ex}{0.1ex}}}}1
|
---|
| 275 | {^}{\raisebox{0.6ex}{$\scriptscriptstyle\land\,$}}1
|
---|
| 276 | {~}{\raisebox{0.3ex}{$\scriptstyle\sim\,$}}1
|
---|
| 277 | {`}{\ttfamily\upshape\hspace*{-0.1ex}`}1
|
---|
| 278 | {<-}{$\leftarrow$}2
|
---|
| 279 | {=>}{$\Rightarrow$}2
|
---|
| 280 | {->}{\makebox[1ex][c]{\raisebox{0.4ex}{\rule{0.8ex}{0.075ex}}}\kern-0.2ex\textgreater}2,
|
---|
| 281 | defaultdialect={CFA},
|
---|
[b721578] | 282 | }% lstset
|
---|
| 283 | }% CFAStyle
|
---|
| 284 |
|
---|
| 285 | \ifdefined\CFALatin% extra Latin-1 escape characters
|
---|
| 286 | \lstnewenvironment{cfa}[1][]{% necessary
|
---|
| 287 | \lstset{
|
---|
| 288 | language=CFA,
|
---|
| 289 | %moredelim=**[is][\color{red}]{@}{@}, % red highlighting @...@
|
---|
| 290 | moredelim=**[is][\color{red}]{®}{®}, % red highlighting ®...® (registered trademark symbol) emacs: C-q M-.
|
---|
| 291 | %moredelim=**[is][\color{blue}]{ß}{ß}, % blue highlighting ß...ß (sharp s symbol) emacs: C-q M-_
|
---|
| 292 | %moredelim=**[is][\color{OliveGreen}]{¢}{¢}, % green highlighting ¢...¢ (cent symbol) emacs: C-q M-"
|
---|
| 293 | %moredelim=[is][\lstset{keywords={}}]{¶}{¶}, % keyword escape ¶...¶ (pilcrow symbol) emacs: C-q M-^
|
---|
| 294 | }% lstset
|
---|
| 295 | \lstset{#1}% necessary
|
---|
| 296 | }{}
|
---|
| 297 | % inline code ©...© (copyright symbol) emacs: C-q M-)
|
---|
| 298 | \lstMakeShortInline© % single-character for \lstinline
|
---|
| 299 | \else% regular ASCI characters
|
---|
| 300 | \lstnewenvironment{cfa}[1][]{% necessary
|
---|
| 301 | \lstset{
|
---|
| 302 | language=CFA,
|
---|
| 303 | escapechar=\$, % LaTeX escape in CFA code
|
---|
| 304 | mathescape=false, % LaTeX math escape in CFA code $...$
|
---|
| 305 | moredelim=**[is][\color{red}]{@}{@}, % red highlighting @...@
|
---|
| 306 | }% lstset
|
---|
| 307 | \lstset{#1}% necessary
|
---|
| 308 | }{}
|
---|
| 309 | % inline code @...@ (at symbol)
|
---|
[cc022a9] | 310 | \makeatother
|
---|
[b721578] | 311 | \lstMakeShortInline@ % single-character for \lstinline
|
---|
[cc022a9] | 312 | \makeatletter
|
---|
[b721578] | 313 | \fi%
|
---|
| 314 |
|
---|
| 315 | % Local Variables: %
|
---|
| 316 | % tab-width: 4 %
|
---|
| 317 | % fill-column: 100 %
|
---|
| 318 | % End: %
|
---|