| [27dde72] | 1 | \usepackage[usenames,dvipsnames]{xcolor}
 | 
|---|
| [0f9bef3] | 2 | \usepackage{listings}
 | 
|---|
 | 3 | \usepackage{inconsolata}
 | 
|---|
 | 4 | 
 | 
|---|
 | 5 | \definecolor{basicCol}{HTML}{000000}
 | 
|---|
 | 6 | \definecolor{commentCol}{HTML}{000000}
 | 
|---|
 | 7 | \definecolor{stringCol}{HTML}{000000}
 | 
|---|
 | 8 | \definecolor{keywordCol}{HTML}{000000}
 | 
|---|
 | 9 | \definecolor{identifierCol}{HTML}{000000}
 | 
|---|
 | 10 | 
 | 
|---|
 | 11 | % from https://gist.github.com/nikolajquorning/92bbbeef32e1dd80105c9bf2daceb89a
 | 
|---|
 | 12 | \lstdefinelanguage{sml} {
 | 
|---|
 | 13 |   morekeywords= {
 | 
|---|
 | 14 |     EQUAL, GREATER, LESS, NONE, SOME, abstraction, abstype, and, andalso, array, as, before, bool, case, char, datatype, do, else, end, eqtype, exception, exn, false, fn, fun, functor, handle, if, in, include, infix, infixr, int, let, list, local, nil, nonfix, not, o, of, op, open, option, orelse, overload, print, raise, real, rec, ref, sharing, sig, signature, string, struct, structure, substring, then, true, type, unit, val, vector, where, while, with, withtype, word
 | 
|---|
 | 15 |   },
 | 
|---|
 | 16 |   morestring=[b]",
 | 
|---|
 | 17 |   morecomment=[s]{(*}{*)},
 | 
|---|
 | 18 | }
 | 
|---|
 | 19 | 
 | 
|---|
 | 20 | \lstdefinelanguage{D}{
 | 
|---|
 | 21 |   % Keywords
 | 
|---|
 | 22 |   morekeywords=[1]{
 | 
|---|
 | 23 |     abstract, alias, align, auto, body, break, cast, catch, class, const,
 | 
|---|
 | 24 |     continue, debug, delegate, delete, deprecated, do, else, enum, export,
 | 
|---|
 | 25 |     false, final, finally, for, foreach, foreach_reverse, function, goto, if,
 | 
|---|
 | 26 |     immutable, import, in, inout, interface, invariant, is, lazy, macro, mixin,
 | 
|---|
 | 27 |     module, new, nothrow, null, out, override, package, pragma, private,
 | 
|---|
 | 28 |     protected, public, pure, ref, return, shared, static, struct, super,
 | 
|---|
 | 29 |     switch, synchronized, template, this, throw, true, try, typedef, typeid,
 | 
|---|
 | 30 |     typeof, union, unittest, volatile, while, with
 | 
|---|
 | 31 |   },
 | 
|---|
 | 32 |   % Special identifiers, common functions
 | 
|---|
 | 33 |   morekeywords=[2]{enforce},
 | 
|---|
 | 34 |   % Ugly identifiers
 | 
|---|
 | 35 |   morekeywords=[3]{
 | 
|---|
 | 36 |     __DATE__, __EOF__, __FILE__, __LINE__, __TIMESTAMP__, __TIME__, __VENDOR__,
 | 
|---|
 | 37 |     __VERSION__, __ctfe, __gshared, __monitor, __thread, __vptr, _argptr,
 | 
|---|
 | 38 |     _arguments, _ctor, _dtor
 | 
|---|
 | 39 |   },
 | 
|---|
 | 40 |   % Basic types
 | 
|---|
 | 41 |   morekeywords=[4]{
 | 
|---|
 | 42 |      byte, ubyte, short, ushort, int, uint, long, ulong, cent, ucent, void,
 | 
|---|
 | 43 |      bool, bit, float, double, real, ushort, int, uint, long, ulong, float,
 | 
|---|
 | 44 |      char, wchar, dchar, string, wstring, dstring, ireal, ifloat, idouble,
 | 
|---|
 | 45 |      creal, cfloat, cdouble, size_t, ptrdiff_t, sizediff_t, equals_t, hash_t
 | 
|---|
 | 46 |   },
 | 
|---|
 | 47 |   % Strings
 | 
|---|
 | 48 |   morestring=[b]{"},
 | 
|---|
 | 49 |   morestring=[b]{'},
 | 
|---|
 | 50 |   morestring=[b]{`},
 | 
|---|
 | 51 |   % Comments
 | 
|---|
 | 52 |   comment=[l]{//},
 | 
|---|
 | 53 |   morecomment=[s]{/*}{*/},
 | 
|---|
 | 54 |   morecomment=[s][\color{blue}]{/**}{*/},
 | 
|---|
 | 55 |   morecomment=[n]{/+}{+/},
 | 
|---|
 | 56 |   morecomment=[n][\color{blue}]{/++}{+/},
 | 
|---|
 | 57 |   % Options
 | 
|---|
 | 58 |   sensitive=true
 | 
|---|
 | 59 | }
 | 
|---|
 | 60 | 
 | 
|---|
 | 61 | \lstdefinelanguage{rust}{
 | 
|---|
 | 62 |   % Keywords
 | 
|---|
 | 63 |   morekeywords=[1]{
 | 
|---|
 | 64 |     abstract, alignof, as, become, box,
 | 
|---|
 | 65 |     break, const, continue, crate, do,
 | 
|---|
 | 66 |     else, enum, extern, false, final,
 | 
|---|
 | 67 |     fn, for, if, impl, in,
 | 
|---|
 | 68 |     let, loop, macro, match, mod,
 | 
|---|
 | 69 |     move, mut, offsetof, override, priv,
 | 
|---|
 | 70 |     proc, pub, pure, ref, return,
 | 
|---|
 | 71 |     Self, self, sizeof, static, struct,
 | 
|---|
 | 72 |     super, trait, true,  type, typeof,
 | 
|---|
 | 73 |     unsafe, unsized, use, virtual, where,
 | 
|---|
 | 74 |     while, yield
 | 
|---|
 | 75 |   },
 | 
|---|
 | 76 |   % Strings
 | 
|---|
 | 77 |   morestring=[b]{"},
 | 
|---|
 | 78 |   % Comments
 | 
|---|
 | 79 |   comment=[l]{//},
 | 
|---|
 | 80 |   morecomment=[s]{/*}{*/},
 | 
|---|
 | 81 |   % Options
 | 
|---|
 | 82 |   sensitive=true
 | 
|---|
 | 83 | }
 | 
|---|
 | 84 | 
 | 
|---|
 | 85 | \lstdefinelanguage{pseudo}{
 | 
|---|
 | 86 |         morekeywords={string,uint,int,bool,float},%
 | 
|---|
 | 87 |         sensitive=true,%
 | 
|---|
 | 88 |         morecomment=[l]{//},%
 | 
|---|
 | 89 |         morecomment=[s]{/*}{*/},%
 | 
|---|
 | 90 |         morestring=[b]',%
 | 
|---|
 | 91 |         morestring=[b]",%
 | 
|---|
 | 92 |         morestring=[s]{`}{`},%
 | 
|---|
 | 93 | }%
 | 
|---|
 | 94 | 
 | 
|---|
 | 95 | \newcommand{\KWC}{K-W C\xspace}
 | 
|---|
 | 96 | 
 | 
|---|
 | 97 | \lstdefinestyle{pseudoStyle}{
 | 
|---|
 | 98 |   escapeinside={@@},
 | 
|---|
 | 99 |   basicstyle=\linespread{0.9}\sf\footnotesize,          % reduce line spacing and use typewriter font
 | 
|---|
 | 100 |   keywordstyle=\bfseries\color{blue},
 | 
|---|
 | 101 |   keywordstyle=[2]\bfseries\color{Plum},
 | 
|---|
 | 102 |   commentstyle=\itshape\color{OliveGreen},                  % green and italic comments
 | 
|---|
 | 103 |   identifierstyle=\color{identifierCol},
 | 
|---|
 | 104 |   stringstyle=\sf\color{Mahogany},                                % use sanserif font
 | 
|---|
 | 105 |   mathescape=true,
 | 
|---|
 | 106 |   columns=fixed,
 | 
|---|
 | 107 |   aboveskip=4pt,                                  % spacing above/below code block
 | 
|---|
 | 108 |   belowskip=3pt,
 | 
|---|
 | 109 |   keepspaces=true,
 | 
|---|
| [3364962] | 110 |   tabsize=4,
 | 
|---|
| [0f9bef3] | 111 |   % frame=lines,
 | 
|---|
 | 112 |   literate=,
 | 
|---|
 | 113 |   showlines=true,                                 % show blank lines at end of code
 | 
|---|
 | 114 |   showspaces=false,
 | 
|---|
 | 115 |   showstringspaces=false,
 | 
|---|
 | 116 |   escapechar=\$,
 | 
|---|
 | 117 |   xleftmargin=\parindentlnth,                     % indent code to paragraph indentation
 | 
|---|
 | 118 |   moredelim=[is][\color{red}\bfseries]{**R**}{**R**},    % red highlighting
 | 
|---|
 | 119 |   % moredelim=* detects keywords, comments, strings, and other delimiters and applies their formatting
 | 
|---|
 | 120 |   % moredelim=** allows cumulative application
 | 
|---|
 | 121 | }
 | 
|---|
 | 122 | 
 | 
|---|
 | 123 | \lstdefinestyle{defaultStyle}{
 | 
|---|
 | 124 |   escapeinside={@@},
 | 
|---|
 | 125 |   basicstyle=\linespread{0.9}\tt\footnotesize,          % reduce line spacing and use typewriter font
 | 
|---|
 | 126 |   keywordstyle=\bfseries\color{blue},
 | 
|---|
 | 127 |   keywordstyle=[2]\bfseries\color{Plum},
 | 
|---|
 | 128 |   commentstyle=\itshape\color{OliveGreen},                  % green and italic comments
 | 
|---|
 | 129 |   identifierstyle=\color{identifierCol},
 | 
|---|
 | 130 |   stringstyle=\sf\color{Mahogany},                                % use sanserif font
 | 
|---|
 | 131 |   mathescape=true,
 | 
|---|
 | 132 |   columns=fixed,
 | 
|---|
 | 133 |   aboveskip=4pt,                                  % spacing above/below code block
 | 
|---|
 | 134 |   belowskip=3pt,
 | 
|---|
 | 135 |   keepspaces=true,
 | 
|---|
| [dcfc4b35] | 136 |   tabsize=4,
 | 
|---|
| [0f9bef3] | 137 |   % frame=lines,
 | 
|---|
 | 138 |   literate=,
 | 
|---|
 | 139 |   showlines=true,                                 % show blank lines at end of code
 | 
|---|
 | 140 |   showspaces=false,
 | 
|---|
 | 141 |   showstringspaces=false,
 | 
|---|
 | 142 |   escapechar=\$,
 | 
|---|
 | 143 |   xleftmargin=\parindentlnth,                     % indent code to paragraph indentation
 | 
|---|
 | 144 |   moredelim=[is][\color{red}\bfseries]{**R**}{**R**},    % red highlighting
 | 
|---|
 | 145 |   % moredelim=* detects keywords, comments, strings, and other delimiters and applies their formatting
 | 
|---|
 | 146 |   % moredelim=** allows cumulative application
 | 
|---|
 | 147 | }
 | 
|---|
| [27dde72] | 148 | 
 | 
|---|
| [a029714] | 149 | \lstdefinestyle{cfaStyle}{
 | 
|---|
 | 150 |   escapeinside={@@},
 | 
|---|
 | 151 |   basicstyle=\linespread{0.9}\tt\footnotesize,          % reduce line spacing and use typewriter font
 | 
|---|
 | 152 |   keywordstyle=\bfseries\color{blue},
 | 
|---|
 | 153 |   keywordstyle=[2]\bfseries\color{Plum},
 | 
|---|
| [dcfc4b35] | 154 |   commentstyle=\sf\itshape\color{OliveGreen},             % green and italic comments
 | 
|---|
| [a029714] | 155 |   identifierstyle=\color{identifierCol},
 | 
|---|
 | 156 |   stringstyle=\sf\color{Mahogany},                                % use sanserif font
 | 
|---|
 | 157 |   mathescape=true,
 | 
|---|
 | 158 |   columns=fixed,
 | 
|---|
 | 159 |   aboveskip=4pt,                                  % spacing above/below code block
 | 
|---|
 | 160 |   belowskip=3pt,
 | 
|---|
 | 161 |   keepspaces=true,
 | 
|---|
| [dcfc4b35] | 162 |   tabsize=4,
 | 
|---|
| [a029714] | 163 |   % frame=lines,
 | 
|---|
 | 164 |   literate=,
 | 
|---|
 | 165 |   showlines=true,                                 % show blank lines at end of code
 | 
|---|
 | 166 |   showspaces=false,
 | 
|---|
 | 167 |   showstringspaces=false,
 | 
|---|
 | 168 |   escapechar=\$,
 | 
|---|
 | 169 |   xleftmargin=\parindentlnth,                     % indent code to paragraph indentation
 | 
|---|
 | 170 |   moredelim=[is][\color{red}\bfseries]{**R**}{**R**},    % red highlighting
 | 
|---|
| [21a1efb] | 171 |   morekeywords=[2]{accept, signal, signal_block, wait, waitfor},
 | 
|---|
| [a029714] | 172 | }
 | 
|---|
 | 173 | 
 | 
|---|
| [0f9bef3] | 174 | \lstMakeShortInline[basewidth=0.5em,breaklines=true,basicstyle=\normalsize\ttfamily\color{basicCol}]@  % single-character for \lstinline
 | 
|---|
 | 175 | 
 | 
|---|
| [27dde72] | 176 | \lstnewenvironment{ccode}[1][]{
 | 
|---|
 | 177 |   \lstset{
 | 
|---|
 | 178 |     language = C,
 | 
|---|
 | 179 |     style=defaultStyle,
 | 
|---|
| [cf966b5] | 180 |     captionpos=b,
 | 
|---|
| [27dde72] | 181 |     #1
 | 
|---|
 | 182 |   }
 | 
|---|
 | 183 | }{}
 | 
|---|
 | 184 | 
 | 
|---|
 | 185 | \lstnewenvironment{cfacode}[1][]{
 | 
|---|
 | 186 |   \lstset{
 | 
|---|
 | 187 |     language = CFA,
 | 
|---|
| [a029714] | 188 |     style=cfaStyle,
 | 
|---|
| [cf966b5] | 189 |     captionpos=b,
 | 
|---|
| [27dde72] | 190 |     #1
 | 
|---|
 | 191 |   }
 | 
|---|
| [0f9bef3] | 192 | }{}
 | 
|---|
 | 193 | 
 | 
|---|
 | 194 | \lstnewenvironment{pseudo}[1][]{
 | 
|---|
 | 195 |   \lstset{
 | 
|---|
 | 196 |     language = pseudo,
 | 
|---|
 | 197 |     style=pseudoStyle,
 | 
|---|
| [cf966b5] | 198 |     captionpos=b,
 | 
|---|
| [0f9bef3] | 199 |     #1
 | 
|---|
 | 200 |   }
 | 
|---|
 | 201 | }{}
 | 
|---|
 | 202 | 
 | 
|---|
 | 203 | \lstnewenvironment{cppcode}[1][]{
 | 
|---|
 | 204 |   \lstset{
 | 
|---|
 | 205 |     language = c++,
 | 
|---|
 | 206 |     style=defaultStyle,
 | 
|---|
| [cf966b5] | 207 |     captionpos=b,
 | 
|---|
| [0f9bef3] | 208 |     #1
 | 
|---|
 | 209 |   }
 | 
|---|
 | 210 | }{}
 | 
|---|
 | 211 | 
 | 
|---|
| [27dde72] | 212 | \lstnewenvironment{ucppcode}[1][]{
 | 
|---|
 | 213 |   \lstset{
 | 
|---|
 | 214 |     language = c++,
 | 
|---|
 | 215 |     style=defaultStyle,
 | 
|---|
| [cf966b5] | 216 |     captionpos=b,
 | 
|---|
| [27dde72] | 217 |     #1
 | 
|---|
 | 218 |   }
 | 
|---|
 | 219 | }{}
 | 
|---|
 | 220 | 
 | 
|---|
| [0f9bef3] | 221 | \lstnewenvironment{javacode}[1][]{
 | 
|---|
 | 222 |   \lstset{
 | 
|---|
 | 223 |     language = java,
 | 
|---|
 | 224 |     style=defaultStyle,
 | 
|---|
| [cf966b5] | 225 |     captionpos=b,
 | 
|---|
| [0f9bef3] | 226 |     #1
 | 
|---|
 | 227 |   }
 | 
|---|
 | 228 | }{}
 | 
|---|
 | 229 | 
 | 
|---|
 | 230 | \lstnewenvironment{scalacode}[1][]{
 | 
|---|
 | 231 |   \lstset{
 | 
|---|
 | 232 |     language = scala,
 | 
|---|
 | 233 |     style=defaultStyle,
 | 
|---|
| [cf966b5] | 234 |     captionpos=b,
 | 
|---|
| [0f9bef3] | 235 |     #1
 | 
|---|
 | 236 |   }
 | 
|---|
 | 237 | }{}
 | 
|---|
 | 238 | 
 | 
|---|
 | 239 | \lstnewenvironment{smlcode}[1][]{
 | 
|---|
 | 240 |   \lstset{
 | 
|---|
 | 241 |     language = sml,
 | 
|---|
 | 242 |     style=defaultStyle,
 | 
|---|
| [cf966b5] | 243 |     captionpos=b,
 | 
|---|
| [0f9bef3] | 244 |     #1
 | 
|---|
 | 245 |   }
 | 
|---|
 | 246 | }{}
 | 
|---|
 | 247 | 
 | 
|---|
 | 248 | \lstnewenvironment{dcode}[1][]{
 | 
|---|
 | 249 |   \lstset{
 | 
|---|
 | 250 |     language = D,
 | 
|---|
 | 251 |     style=defaultStyle,
 | 
|---|
| [cf966b5] | 252 |     captionpos=b,
 | 
|---|
| [0f9bef3] | 253 |     #1
 | 
|---|
 | 254 |   }
 | 
|---|
 | 255 | }{}
 | 
|---|
 | 256 | 
 | 
|---|
 | 257 | \lstnewenvironment{rustcode}[1][]{
 | 
|---|
 | 258 |   \lstset{
 | 
|---|
 | 259 |     language = rust,
 | 
|---|
 | 260 |     style=defaultStyle,
 | 
|---|
| [cf966b5] | 261 |     captionpos=b,
 | 
|---|
| [0f9bef3] | 262 |     #1
 | 
|---|
 | 263 |   }
 | 
|---|
 | 264 | }{}
 | 
|---|
 | 265 | 
 | 
|---|
| [b9d0fb6] | 266 | \lstnewenvironment{gocode}[1][]{
 | 
|---|
 | 267 |   \lstset{
 | 
|---|
 | 268 |     language = Golang,
 | 
|---|
 | 269 |     style=defaultStyle,
 | 
|---|
| [cf966b5] | 270 |     captionpos=b,
 | 
|---|
| [b9d0fb6] | 271 |     #1
 | 
|---|
 | 272 |   }
 | 
|---|
 | 273 | }{}
 | 
|---|
 | 274 | 
 | 
|---|
| [0f9bef3] | 275 | \newcommand{\zero}{\lstinline{zero_t}\xspace}
 | 
|---|
 | 276 | \newcommand{\one}{\lstinline{one_t}\xspace}
 | 
|---|
| [27dde72] | 277 | \newcommand{\ateq}{\lstinline{\@=}\xspace}
 | 
|---|
| [a029714] | 278 | \newcommand{\code}[1]{\lstinline[language=CFA,style=cfaStyle]{#1}}
 | 
|---|
| [27dde72] | 279 | \newcommand{\pscode}[1]{\lstinline[language=pseudo,style=pseudoStyle]{#1}}
 | 
|---|