diff options
author | Karl Berry <karl@freefriends.org> | 2006-01-09 00:49:07 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2006-01-09 00:49:07 +0000 |
commit | 007f67a693e4d031fd3d792df8e4d5f43e2cb2e7 (patch) | |
tree | 90d17e00e572ecb1e24764b6f29c80e098b08d29 /Master/texmf-dist/doc/latex/elpres/elpres-example.tex | |
parent | 950209b26f70aa87ed07c54f82a95b6f03b7c3a0 (diff) |
doc/latex
git-svn-id: svn://tug.org/texlive/trunk@84 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/latex/elpres/elpres-example.tex')
-rw-r--r-- | Master/texmf-dist/doc/latex/elpres/elpres-example.tex | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/elpres/elpres-example.tex b/Master/texmf-dist/doc/latex/elpres/elpres-example.tex new file mode 100644 index 00000000000..992d8f4e739 --- /dev/null +++ b/Master/texmf-dist/doc/latex/elpres/elpres-example.tex @@ -0,0 +1,56 @@ +\documentclass[pdftex,12pt,helvetfont]{elpres} +\usepackage[latin1]{inputenc} +\usepackage{color} +\usepackage{graphicx} + +\definecolor{rot}{rgb}{0.75,0.05,0.25} +\definecolor{hellgrau}{gray}{0.5} +\definecolor{blau}{rgb}{0,0,0.7} + +\newcommand{\hoch}[1]{\raisebox{0.6ex}{#1}} +\newcommand{\tief}[1]{\raisebox{-0.6ex}{#1}} + + +\usepackage[document]{ragged2e} +\RaggedRight + +\begin{document} +\begin{titlepage} +\distance{1} +\centering \LARGE + \bfseries \textcolor{blau}{Title of a presentation written with the + \texttt{elpres} class} + +\distance{1} +\large +Autor\\[1ex]\textcolor{hellgrau}{Institution} +\distance{2} +\end{titlepage} + +\begin{psli}[Title of a page using the \texttt{psli} environment] +\textcolor{rot}{The first page} + +\begin{citemize} + \item One + \item Two +\end{citemize} + +\begin{cenumerate} + \item the first enumerated item + \item the second enumerated item +\end{cenumerate} + +\begin{cdescription} + \item [One] described item + \item [Another] described item +\end{cdescription} + +\end{psli} + +\begin{rsli} +The second page written with the \texttt{rsli}-environment +\end{rsli} + +\end{document} + + |