ttemplate.tex - scibeamer - quickly create scientific presentations using LateX and Beamer
HTML git clone git://src.adamsgaard.dk/scibeamer
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
ttemplate.tex (3671B)
---
1 %% Beamer document class
2 \documentclass[11pt]{beamer}
3 % Available font size options:
4 % 8pt, 9pt, 10pt, 11pt (default), 12pt, 14pt, 17pt, 20pt
5
6 % Make printable version
7 %\usepackage{beamerarticle}
8
9 %% Language, fonts and encoding
10 \usepackage[english]{babel}
11 \usepackage[latin1]{inputenc}
12 \usepackage[T1]{fontenc}
13 %\usepackage[light,math]{iwona} % Math font w/o serifs
14 \usepackage[final]{microtype}
15 \usepackage{lmodern}
16
17 %% Drawing
18 \usepackage{tikz}
19 \usetikzlibrary{shapes,arrows,3d,calc,decorations.pathmorphing}
20
21 \usepackage{multimedia}
22
23 %% Beamer-specific layout and style
24 \usetheme{Singapore}
25 \usecolortheme{seagull} % Gray color theme
26 \xdefinecolor{AUblue}{rgb}{0.0,0.3,0.5}
27 \setbeamercolor{frametitle}{fg=AUblue}
28 \setbeamercolor{section in toc}{fg=AUblue}
29 \setbeamercolor{title}{fg=red!50!black}
30 \setbeamertemplate{footline}[frame number] % add page number in footer
31 \beamertemplatenavigationsymbolsempty % disable navigation buttons
32
33 %% Mathematics, scientific and chemical notation
34 \usepackage{amssymb,amsmath,amsfonts}
35 \usepackage[detect-all]{siunitx}
36
37 %% Code typesetting
38 \usepackage{listings}
39
40 \usepackage{scibeamer}
41
42 %%%% AUTHOR, TITLE, AFFILIATION
43 \title{\texttt{scibeamer}\\ A beamer-addon for scientific presentations}
44 \author[A. Damsgaard]{Anders Damsgaard}
45 \institute[SU]{Stanford University\\[2mm]
46 {\small \url{anders@adamsgaard.dk}}}
47 \date{\small Last revision: \today}
48 %\logo{\includegraphics[width=30px]{logo1.pdf}}
49 %\logo{\includegraphics[width=30px]{logo2.pdf}}
50
51 \begin{document}
52
53 \begin{frame}[fragile]
54 \titlepage{}
55 \end{frame}
56
57 % Optional slide with table of contents
58 %\begin{frame}[fragile]
59 %\tableofcontents
60 %\end{frame}
61
62 \section{Introduction}
63 \subsection{Usage}
64
65 \begin{frame}{Usage}
66
67 \texttt{scibeamer} is a flexible package containing functions for quickly
68 creating high-quality scientific presentations using \emph{beamer}.
69
70 \vspace{1em}
71
72 The functions in the \texttt{scibeamer} template are useful for including
73 images scaled to frame size, optionally with references to image source
74 publications.
75
76 \end{frame}
77
78 \begin{frame}{Building presentations}
79
80 Add images to the \texttt{graphics/} folder and change \texttt{template.tex}
81 to include the desired content, either using the functions provided by the
82 \texttt{scibeamer} package or standard \emph{beamer} commands.
83
84 \vspace{1em}
85
86 The included \texttt{Makefile} allows quick output PDF generation by typing
87 \texttt{make} from the command line.
88
89 \end{frame}
90
91 \section{Commands}
92 \subsection{Citation commands}
93
94 \begin{frame}{\texttt{fcite}}
95 \lstinline{fcite}: Add a citation to the bottom left of the frame
96
97 \end{frame}
98
99 \section{Examples}
100 \subsection{Examples}
101
102 \titleframe{Examples}
103
104 \plainimageframe{graphics/fig1.pdf}{1.0}
105
106 \plainimageframeheight{graphics/fig1.pdf}{0.5}
107
108 \imageframe{An example image frame using \texttt{\\imageframe}}
109 {graphics/fig1.pdf}{0.5}
110
111 \imageframenoscale{An example unscaled image frame using \texttt{\\imageframenoscale}}
112 {graphics/fig1.pdf}
113
114 \imageframecite{An example image frame using \texttt{\\imageframecite}}
115 {graphics/fig1.pdf}{0.8}%
116 {Damsgaard et al. 2013}{J. Geophys. Res.-Earth}
117
118
119 \section{Conclusions}
120 \begin{frame}{Conclusions}
121 \begin{itemize}
122
123 \item \texttt{scibeamer} provides macros for quickly creating
124 image-based slides with references using \LaTeX{}/Beamer\\[1em]
125
126 \item Output files can be built as \texttt{pdf}
127 using the provided \texttt{Makefile}\\[1em]
128
129 \item \texttt{scibeamer} is available at
130 \url{https://src.adamsgaard.dk/scibeamer}
131
132 \end{itemize}
133 \end{frame}
134
135
136 %%%% APPENDIX
137 %\titleframe{Appendix}
138
139 %\begin{frame}
140 % Optionally include appendix content here.
141 %\end{frame}
142
143 \end{document}