-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.tex
140 lines (122 loc) · 4.42 KB
/
main.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
%% LaTeX Beamer presentation template (requires beamer package)
%% see http://bitbucket.org/rivanvx/beamer/wiki/Home
%% see https://www.github.com/dphow/ND_Beamer_Template
%% template based on a template by Till Tantau
%% Adapted to Notre Dame by Daniel Howard
\documentclass[compress,xcolor=table]{beamer}
% Keep compress option to save the most space vertical space, especially when
% section navigation is enabled
%% Use the below to make handouts
% \documentclass[handout]{beamer}
%% Use the next line with \documentclass{article} to print in article style
%\usepackage{beamerarticle}
%%%%%%%%%%%%%% TEMPLATE SETTINGS %%%%%%%%%%%%%%
\mode<presentation>
{
%% OPTIONS
% nav - Enables a bottom right navigation bar
% white - Sets slides for white color scheme
% nologo - Removes logo from all slides title bar
% compactlogo - Enables a compact banner for the title slide (N/A currently)
% sections - Enables top of slide section progress tracking and navigation
% noslidenumbers - Removes counting of slides in bottom right
% fullFooter - Enables a more descriptive footer
\usetheme[white,sections,nav,fullFooter]{NotreDame}
\setbeamercovered{transparent}
}
\usepackage[english]{babel}
\usepackage[latin1]{inputenc}
% font definitions, try \usepackage{ae} instead of the following
% three lines if you don't like this look
\usepackage{mathptmx}
\usepackage[scaled=.90]{helvet}
\usepackage{courier}
\usepackage[T1]{fontenc}
\usepackage{pstricks,pst-node,pst-text,pst-3d}
\usepackage{color,colortbl}
\usepackage{geometry}
\usepackage{graphicx}
\usepackage{float}
\usepackage{amsmath}
\hypersetup{
pdfborderstyle={/S/U/W 1}, % underline links instead of boxes
linkbordercolor=gray, % color of internal links
citebordercolor=green, % color of links to bibliography
filebordercolor=magenta, % color of file links
urlbordercolor=cyan % color of external links
}
\usepackage[
maxnames=2,
style=numeric-comp,
backref=true,
backend=biber]{biblatex}
% Use \cite, \footcite, \parencite, etc. \supercite, Is only compatible if style
% is numeric. Styles: numeric, numeric-comp, authoryear, etc.
\addbibresource{references.bib}
%\setbeamertemplate{bibliography item}[text] % Use to remove icons from bibliography
\usepackage{datetime}
\newdateformat{specialdate}{\THEYEAR-\twodigit{\THEMONTH}-\twodigit{\THEDAY}}
%%%%%%%%%%%%%% PRESENTATION INFO %%%%%%%%%%%%%%
\title{My Title}
%\subtitle{}
\date[\specialdate\today \hspace*{1em} Occasion]{\today \\ Occasion}
% - Use the \inst{?} command only if the authors have different
% affiliation.
%\author{F.~Author\inst{1} \and S.~Another\inst{2}}
\author{Daniel Howard\inst{1}}
% - Use the \inst command only if there are several affiliations.
% - Keep it simple, no one is interested in your street address.
\institute[\hspace*{1em} Notre Dame]{
\inst{1}%
Department of Applied \& Computational Mathematics \& Statistics\\
University of Notre Dame du Lac
\and
\inst{2}%
Department of Theoretical Philosophy\\
University of E}
% This is only inserted into the PDF information catalog. Can be left
% out.
\subject{Talks}
% If you have a file called "university-logo-filename.xxx", where xxx
% is a graphic format that can be processed by latex or pdflatex,
% resp., then you can add a logo as follows:
% \pgfdeclareimage[height=0.5cm]{university-logo}{university-logo-filename}
% \logo{\pgfuseimage{university-logo}}
% define some basic colours - already defined if pstricks is used
\setbeamercolor{blue}{fg=blue!90}
\newcommand{\blue}[1]{\usebeamercolor[fg]{blue}#1}
\setbeamercolor{red}{fg=red!80,bg=yellow}
\newcommand{\red}[1]{\usebeamercolor[fg]{red}#1}
\setbeamercolor{black}{fg=black!99}
\newcommand{\black}[1]{\usebeamercolor[fg]{black}#1}
\setbeamercolor{green}{fg=green!80}
\newcommand{\green}[1]{\usebeamercolor[fg]{green}#1}
% Delete this, if you do not want the table of contents to pop up at
% the beginning of each subsection:
\AtBeginSubsection[]
{
\begin{frame}<beamer>
\frametitle{Outline}
\tableofcontents[currentsection,currentsubsection]
\end{frame}
}
% If you wish to uncover everything in a step-wise fashion, uncomment
% the following command:
%\beamerdefaultoverlayspecification{<+->}
\begin{document}
%% Title Slide
{
\setbeamertemplate{navigation symbols}{}
\begin{frame}[plain]
\titlepage
\end{frame}
}
\addtocounter{framenumber}{-1}
%% Table of Contents slide
\begin{frame}
\frametitle{Outline}
\tableofcontents
% You might wish to add the option [pausesections]
\end{frame}
\input{document}
\end{document}