blob: 992d8f4e739ef37ac10ebd9808e0dd03d0bc21e9 (
plain)
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
|
\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}
|