-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathuserguide.tex
More file actions
100 lines (87 loc) · 2.51 KB
/
Copy pathuserguide.tex
File metadata and controls
100 lines (87 loc) · 2.51 KB
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
% !TEX program = lualalatex
\documentclass[xcolor=table,compress,pdfpagelabels]{beamer}
\newcommand{\thisDocumentVersion}{0.2}
%%----------- CONFIGURE BEAMER ------------%%
\mode<presentation> {
\usetheme[numberbyframe]{WM}
}
\author{Juan Carlos Cornejo}
\title{W\&M Beamer Theme User Guide}
\subtitle{Version: \thisDocumentVersion}
\institute{The College of William \& Mary}
\date{March 12, 2015}
\begin{document}
\begin{frame}[plain]
\titlepage
\end{frame}
%\begin{frame}{Guide Outline}
% \tableofcontents
%\end{frame}
\section{Introduction}
\begin{frame}{Introduction}
\begin{center}
\end{center}
\end{frame}
\begin{quoteframe}{Why use this theme?}
William \& Mary's distinction as a leader in American education is over 300 years strong. Growth of the William \& Mary brand in the 21st century requires consistent and thoughtful stewardship of university visuals.\\
\ \hfill--W\&M Styleguide 1.0
\end{quoteframe}
\begin{frame}[fragile]{Getting and Using the W\&M Beamer Theme}
\begin{enumerate}
\item First, get a copy of the theme from the GitHub page
\begin{itemize}
\item https://github.com/leadmocha/beamer\_template\_WM
\end{itemize}
\item Extract the contents in the base of your LaTeX project
\item Select the theme in your preamble
\begin{verbatim}
\documentclass[]{beamer}
...
\mode<presentation> {
\usetheme{WM}
}
...
\begin{document}
\end{verbatim}
\end{enumerate}
\end{frame}
\begin{frame}[fragile]{Frame vs Page Numbers}
Beamer allows transitions, which begs the question...\\
\begin{block}{}
\begin{center}How should I number my slides?\end{center}
\end{block}
Two possible options exist
\begin{itemize}
\item numberbyframe
\item numberbypage \structure{(default)}
\end{itemize}
The difference is that page numbers \alert{increase} with transitions and frames do not.
\begin{example}
\begin{center}
This is Frame \alert{1} Page \alert{\only<1>{1}\only<2>{2}}.
\end{center}
\end{example}
\end{frame}
\begin{frame}[fragile]{Special Slides}
A slide with half content half W\&M Crest:
\begin{verbatim}
\begin{crestframe}{Optional Title Here}
Slide content goes here
\end{crestframe}
\end{verbatim}
A Quote only slide use:
\begin{verbatim}
\begin{quoteframe}{Optional Title Here}
Quote Here\\
--Author here
\end{quoteframe}
\end{verbatim}
\end{frame}
\begin{crestframe}{Special Slide: Crest Frame}
\begin{itemize}
\item Will use up only 60\% of the frame
\item Crest is on the right
\item Similar to Quote frame
\end{itemize}
\end{crestframe}
\end{document}