-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBeamer-Template.tex
81 lines (59 loc) · 2.61 KB
/
Beamer-Template.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
\RequirePackage[l2tabu, orthodox]{nag} % Warn about outdated commands/packages.
% Set font and paper size and theme.
\documentclass[11pt, a4paper]{beamer}
\usetheme{CambridgeUS}
\usecolortheme{orchid}
\beamertemplatenavigationsymbolsempty % Disable navigation bar.
% If you wise to create a handout, add 'handout' to the list of options for
% 'documentclass' and uncomment the 'pgfpagesuselayout' line.
\usepackage{pgfpages}
% \pgfpagesuselayout{4 on 1}[a4paper, border shrink=5mm, landscape]
%%% General formatting packages (order is important, so don't sort) %%%
\usepackage{amsmath} % More equation formatting.
\usepackage[dutch, english]{babel} % Language specific quirks.
\usepackage{booktabs} % Improved tables.
\usepackage[font=small]{caption} % Better caption formatting.
\usepackage[T1]{fontenc} % Makes one unicode character of special input (e.g. ö).
\usepackage{float} % More control over image positions.
\usepackage{graphicx} % Include graphics. Use '\graphicspath' to locate files in a different folder.
\usepackage[utf8]{inputenc} % Special characters (e.g. trema) can be entered directly: .tex file has to be saved using UTF-8 encoding.
\usepackage{lmodern} % Alternative font because 'fontenc' package does not work with default.
\usepackage{microtype} % Improves character spacing.
\usepackage{natbib} % Provides (author, year) references. \citet: textual, \citep: parenthetical
\usepackage{physics} % Provides physics macros such as Dirac notation.
\usepackage{tikz} % Draw diagrams and figures.
\usepackage{url} % Allow inclusion of urls in text.
\usepackage{siunitx} % SI unit formatting and scientific notation.
\usepackage{subcaption} % Allow subcaptions.
\usepackage[colorinlistoftodos]{todonotes} % Add todo notes.
\usepackage{cleveref} % Automate "equation (...)" reference.
%%% Personal information %%%
\title[Short Tile]{Longer Title that is Too Long for Small Space}
\subtitle{A Subtitle Further Explaining the Subject}
\author[Short Author Name]{Bob Johnson}
\institute[Short Institute]{University of Templates}
\date[Short Date]{\today} % Or put something like 'Conference, 2100' here.
\begin{document}
\frame{\titlepage}
\section*{Outline}
\frame{\tableofcontents}
\section{Introduction}
\frame{\tableofcontents[currentsection]}
\subsection{Why?}
\begin{frame}
\end{frame}
\subsection{Where?}
\begin{frame}
\end{frame}
\section{Results}
\frame{\tableofcontents[currentsection]}
\subsection{Discussion}
\begin{frame}
\end{frame}
\subsection{Conslusion}
\begin{frame}
\end{frame}
% Set the style of your .bib file here. Set style to abbrv to get Vancouver style.
\bibliographystyle{abbrv}
% \bibliography{}
\end{document}