diff options
author | Karl Berry <karl@freefriends.org> | 2015-03-24 21:17:35 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2015-03-24 21:17:35 +0000 |
commit | 1b9aa95deee3641bd94fd7589b3ebe1e84f87103 (patch) | |
tree | 41d76f74295d82814fd0674fbda81767c5d3dc10 /Master/texmf-dist/doc/latex/epyt | |
parent | d612b2f9446fa4d7d81b52c357758ea272ed7c5c (diff) |
epyt (24mar15)
git-svn-id: svn://tug.org/texlive/trunk@36611 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/epyt')
-rw-r--r-- | Master/texmf-dist/doc/latex/epyt/README | 11 | ||||
-rw-r--r-- | Master/texmf-dist/doc/latex/epyt/epyt-demo.pdf | bin | 0 -> 44861 bytes | |||
-rw-r--r-- | Master/texmf-dist/doc/latex/epyt/epyt-demo.tex | 85 |
3 files changed, 96 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/epyt/README b/Master/texmf-dist/doc/latex/epyt/README new file mode 100644 index 00000000000..0fd5d41565d --- /dev/null +++ b/Master/texmf-dist/doc/latex/epyt/README @@ -0,0 +1,11 @@ +Package epyt: a simple and clean theme for LaTeX beamer class +Copyright (C) 2013-2015 Zou Hu <zohooo@yeah.net> + +Please report bugs, problems, and suggestions via + https://github.com/zohooo/epyt + +The package may be distributed and/or modified under the conditions +of the LaTeX Project Public License, either version 1.3 of this +license or (at your option) any later version. The latest version +of this license is in + http://www.latex-project.org/lppl.txt diff --git a/Master/texmf-dist/doc/latex/epyt/epyt-demo.pdf b/Master/texmf-dist/doc/latex/epyt/epyt-demo.pdf Binary files differnew file mode 100644 index 00000000000..2801bdebc35 --- /dev/null +++ b/Master/texmf-dist/doc/latex/epyt/epyt-demo.pdf diff --git a/Master/texmf-dist/doc/latex/epyt/epyt-demo.tex b/Master/texmf-dist/doc/latex/epyt/epyt-demo.tex new file mode 100644 index 00000000000..1f3e0ed756c --- /dev/null +++ b/Master/texmf-dist/doc/latex/epyt/epyt-demo.tex @@ -0,0 +1,85 @@ +% -*- coding: utf-8 -*- +% !TEX program = xelatex +% +% Package epyt: a simple and clean theme for LaTeX beamer class +% Copyright (C) 2013-2015 Zou Hu <zohooo@yeah.net> +% +% Please report bugs, problems, and suggestions via +% https://github.com/zohooo/epyt +% +% The package may be distributed and/or modified under the conditions +% of the LaTeX Project Public License, either version 1.3 of this +% license or (at your option) any later version. The latest version +% of this license is in +% http://www.latex-project.org/lppl.txt + +\documentclass[14pt]{beamer} + +\usetheme[color=white]{epyt} % black, blue, green, white + +\usepackage{arev} % use arev sans font + +\hypersetup{ + pdfpagemode={FullScreen}, +} + +\title{Epyt Theme for Beamer} +\author{zohooo@yeah.net} +%\institute{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} + +\epytsetup{color=green} + +\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} + +\epytsetup{color=blue} + +\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} + +\epytsetup{color=black} + +\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} |