summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/epyt
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2016-05-16 14:44:11 +0000
committerKarl Berry <karl@freefriends.org>2016-05-16 14:44:11 +0000
commit01314f5b8da0f34a22c375758982bf63860d2e5d (patch)
tree676e4d157ee0328b940f1adf1a3d5be607b180e7 /Master/texmf-dist/doc/latex/epyt
parentb710014271b4285b87efaa136ac29f5425816f7f (diff)
rm epyt, renamed to beamertheme-epyt
git-svn-id: svn://tug.org/texlive/trunk@41188 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/epyt')
-rw-r--r--Master/texmf-dist/doc/latex/epyt/README11
-rw-r--r--Master/texmf-dist/doc/latex/epyt/epyt-demo.pdfbin44861 -> 0 bytes
-rw-r--r--Master/texmf-dist/doc/latex/epyt/epyt-demo.tex85
3 files changed, 0 insertions, 96 deletions
diff --git a/Master/texmf-dist/doc/latex/epyt/README b/Master/texmf-dist/doc/latex/epyt/README
deleted file mode 100644
index 0fd5d41565d..00000000000
--- a/Master/texmf-dist/doc/latex/epyt/README
+++ /dev/null
@@ -1,11 +0,0 @@
-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
deleted file mode 100644
index 2801bdebc35..00000000000
--- a/Master/texmf-dist/doc/latex/epyt/epyt-demo.pdf
+++ /dev/null
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/epyt/epyt-demo.tex b/Master/texmf-dist/doc/latex/epyt/epyt-demo.tex
deleted file mode 100644
index 1f3e0ed756c..00000000000
--- a/Master/texmf-dist/doc/latex/epyt/epyt-demo.tex
+++ /dev/null
@@ -1,85 +0,0 @@
-% -*- 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}