-
Notifications
You must be signed in to change notification settings - Fork 7
/
arfc-pres.tex
123 lines (105 loc) · 3.2 KB
/
arfc-pres.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
% File: arfc-beamer.tex
% Created: Sun May 5 10:00 PM 2013 C
%
%\documentclass[11pt,handout]{beamer}
\documentclass[9pt]{beamer}
\usetheme[white]{Illinois}
%\title[short title]{long title}
\title[Short Title]{A Very Very Long Title for a Presentation about Cats}
%\subtitle[short subtitle]{long subtitle}
\subtitle[Short SubTitle]{Mostly Kittens}
%\author[short name]{long name}
\author[Your Name]{Your Name\\Advanced Reactors and Fuel Cycles Group}
%\date[short date]{long date}
\date[04.01.2100]{April 1, 2100}
%\institution[short name]{long name}
\institute[UIUC]{University of Illinois at Urbana-Champaign}
%\usepackage{bbding}
\usepackage{amsfonts}
\usepackage{amsmath}
\usepackage{xspace}
\usepackage{graphicx}
\usepackage{subfigure}
\usepackage{booktabs} % nice rules for tables
\usepackage{microtype} % if using PDF
\usepackage{bigints}
\usepackage{minted}
\newcommand{\units}[1] {\:\text{#1}}%
\newcommand{\SN}{S$_N$}%{S$_\text{N}$}%{$S_N$}%
\DeclareMathOperator{\erf}{erf}
%I need some complimentary error funcitons...
\DeclareMathOperator{\erfc}{erfc}
%Those icons in the references are terrible looking
\setbeamertemplate{bibliography item}[text]
%%%% Acronym support
\usepackage[acronym,toc]{glossaries}
\include{acros}
\makeglossaries
%try to get rid of header on title page\dots
\makeatletter
\newenvironment{withoutheadline}{
\setbeamertemplate{headline}[default]
\def\beamer@entrycode{\vspace*{-\headheight}}
}{}
\makeatother
\makeatother
\setbeamertemplate{footline}
{
\leavevmode%
\hbox{%
\rightline{\insertframenumber{} / \inserttotalframenumber\hspace*{1ex}}
}%
\vskip0pt%
}
\makeatletter
\begin{document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% From uw-beamer Here's a handy bit of code to place at
%% the beginning of your presentation (after \begin{document}):
\newcommand*{\alphabet}{ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz}
\newlength{\highlightheight}
\newlength{\highlightdepth}
\newlength{\highlightmargin}
\setlength{\highlightmargin}{2pt}
\settoheight{\highlightheight}{\alphabet}
\settodepth{\highlightdepth}{\alphabet}
\addtolength{\highlightheight}{\highlightmargin}
\addtolength{\highlightdepth}{\highlightmargin}
\addtolength{\highlightheight}{\highlightdepth}
\newcommand*{\Highlight}{\rlap{\textcolor{HighlightBackground}{\rule[-\highlightdepth]{\linewidth}{\highlightheight}}}}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%--------------------------------%%
\begin{withoutheadline}
\frame{
\titlepage
}
\end{withoutheadline}
%%--------------------------------%%
\AtBeginSection[]{
\begin{frame}
\frametitle{Outline}
\tableofcontents[currentsection]
\end{frame}
}
\section{Motivation}
\subsection{Cat Behavior}
\input{cat_behavior}
\subsection{Cat Appearance}
\input{cat_appearance}
\subsection{Cat Math}
\input{cat_math}
\section{Methods}
\subsection{Illinois Colors}
\input{fierce}
\section{Conclusion}
\input{conclusion}
\input{acks}
%%--------------------------------%%
%%--------------------------------%%
\begin{frame}[allowframebreaks]
\frametitle{References}
\bibliographystyle{plain}
{\footnotesize \bibliography{bibliography.bib} }
\end{frame}
%%--------------------------------%%
\end{document}