forked from zohooo/epyt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
epyt-demo.tex
65 lines (50 loc) · 1.66 KB
/
epyt-demo.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
% !TEX program = xelatex
\documentclass[14pt]{beamer}
\usetheme[color=black]{epyt} % black, blue, green, white
\usepackage{arev} % use arev sans font
\hypersetup{
pdfpagemode={FullScreen},
}
\title{Epyt, a Simple but Nice Theme for Beamer}
\author{https://github.com/zohooo/epyt}
\begin{document}
\begin{frame}[plain]\transboxout
\titlepage
\end{frame}
\begin{frame}\transboxin
\begin{center}
\tableofcontents[hideallsubsections]
\end{center}
\end{frame}
\section{Introduction}
\begin{frame}{Introduction}
Epyt is a simple but nice theme for Beamer, with the following features: \pause
\begin{itemize}[<+->]
\item simple structure: with page numbers at footer, no head bar and side bar;
\item simple templates: displaying theorems with traditional inline style;
\item simple colors: using only several foreground and background colors.
\end{itemize}
\end{frame}
\section{Enumerates}
\begin{frame}[fragile]{Ordered Lists}
A Beamer theme consists of the following four parts: \pause
\begin{enumerate}[<+->]
\item outer theme, with \verb!\usebeameroutertheme!;
\item inner theme, with \verb!\usebeamerinnertheme!;
\item color theme, with \verb!\usebeamercolortheme!;
\item font theme, with \verb!\usebeamerfonttheme!.
\end{enumerate}
\end{frame}
\section{Mathmatics}
\begin{frame}{Example}
\begin{example}
Prove the following result:
\[ \lim_{x\to0}\frac{\sin 3x}{\ln(1-2x)}=-\frac{3}{2} \]
\end{example}\pause
\begin{proof}
Since $\sin 3x \sim 3x$ and $\ln(1-2x) \sim -2x$, we have
\[ \lim_{x\to0}\frac{\sin 3x}{\ln(1-2x)}=\lim_{x\to0}\frac{3x}{-2x}=-\frac{3}{2}, \]
and we are done.
\end{proof}
\end{frame}
\end{document}