blob: 39dd1029f6009f3f550c181d700aa969ef674153 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
Sometimes you have to do things differently depending on whether
you're building the entire Proceedings... here's an example...
\ifols
\usepackage{cprog}
\usepackage[nolineno,norules]{lgrind}
\usepackage[hang,scriptsize]{subfigure}
\else
\usepackage{subfigure}
%%% both of these break the Proceedings and are thus evil
\usepackage{listings}
\input{llvm.lst} % Get listing support for llvm code
\fi
|