forked from fletcher/peg-multimarkdown-latex-support
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmmd-beamer-header.tex
40 lines (27 loc) · 865 Bytes
/
mmd-beamer-header.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
%
% Configure LaTeX to produce a PDF presentation using the beamer class
%
\documentclass[ignorenonframetext,12pt]{beamer}
%\documentclass[onesided]{article}
%\usepackage{graphicx}
%\usepackage{beamerarticle}
\usepackage{beamerthemesplit}
\usepackage{patchcmd}
\usepackage{tabulary} % Support longer table cells
\usepackage{booktabs} % Support better tables
\usepackage[sort&compress]{natbib}
\usepackage{acronym} % Support acronyms
\usepackage{framed} % Allow background color for images
\definecolor{shadecolor}{named}{white}
\usepackage{subfigure}
\let\oldSubtitle\subtitle
% Configure default metadata
\input{mmd-default-metadata}
\AtBeginSection[]
{
\begin{frame}
\frametitle{Outline}
\tableofcontents[currentsection,currentsubsection]
\end{frame}
}
\long\def\citefoot#1{\let\thefootnote\relax\footnotetext{\citet{#1}} }