修訂 | 04422063ae1f2d127b0a6636c850e9cba5e56701 (tree) |
---|---|
時間 | 2008-07-11 21:54:24 |
作者 | iselllo |
Commiter | iselllo |
I added an example about how to use the Beamer class for creating presentations. It needs 3
images in order to compile correctly.
@@ -0,0 +1,188 @@ | ||
1 | +% This text is proprietary. | |
2 | +% It's a part of presentation made by myself. | |
3 | +% It may not used commercial. | |
4 | +% The noncommercial use such as private and study is free | |
5 | +% May 2007 | |
6 | +% Author: Sascha Frank | |
7 | +% University Freiburg | |
8 | +% www.informatik.uni-freiburg.de/~frank/ | |
9 | +% | |
10 | +% | |
11 | +\documentclass{beamer} | |
12 | +\usepackage{beamerthemeshadow} | |
13 | +\begin{document} | |
14 | +\title{Beamer Class well nice} | |
15 | +\author{Sascha Frank} | |
16 | +\date{\today} | |
17 | + | |
18 | +\begin{frame} | |
19 | +\titlepage | |
20 | +\end{frame} | |
21 | + | |
22 | +\begin{frame}\frametitle{Table of contents}\tableofcontents | |
23 | +\end{frame} | |
24 | + | |
25 | + | |
26 | +\section{Section no.1} | |
27 | +\begin{frame}\frametitle{Title} | |
28 | +Each frame should have a title. | |
29 | +\end{frame} | |
30 | +\subsection{Subsection no.1.1 } | |
31 | +\begin{frame} | |
32 | +Without title somethink is missing. | |
33 | +\end{frame} | |
34 | + | |
35 | + | |
36 | +\section{Section no. 2} | |
37 | +\subsection{Lists I} | |
38 | +\begin{frame}\frametitle{unnumbered lists} | |
39 | +\begin{itemize} | |
40 | +\item Introduction to \LaTeX | |
41 | +\item Course 2 | |
42 | +\item Termpapers and presentations with \LaTeX | |
43 | +\item Beamer class | |
44 | +\end{itemize} | |
45 | +\end{frame} | |
46 | + | |
47 | +\begin{frame}\frametitle{lists with pause} | |
48 | +\begin{itemize} | |
49 | +\item Introduction to \LaTeX \pause | |
50 | +\item Course 2 \pause | |
51 | +\item Termpapers and presentations with \LaTeX \pause | |
52 | +\item Beamer class | |
53 | +\end{itemize} | |
54 | +\end{frame} | |
55 | + | |
56 | +\subsection{Lists II} | |
57 | +\begin{frame}\frametitle{numbered lists} | |
58 | +\begin{enumerate} | |
59 | +\item Introduction to \LaTeX | |
60 | +\item Course 2 | |
61 | +\item Termpapers and presentations with \LaTeX | |
62 | +\item Beamer class | |
63 | +\end{enumerate} | |
64 | +\end{frame} | |
65 | + | |
66 | +\begin{frame}\frametitle{numbered lists with pause} | |
67 | +\begin{enumerate} | |
68 | +\item Introduction to \LaTeX \pause | |
69 | +\item Course 2 \pause | |
70 | +\item Termpapers and presentations with \LaTeX \pause | |
71 | +\item Beamer class | |
72 | +\end{enumerate} | |
73 | +\end{frame} | |
74 | + | |
75 | +\section{Section no.3} | |
76 | +\subsection{Tables} | |
77 | +\begin{frame}\frametitle{Tables} | |
78 | +\begin{tabular}{|c|c|c|} | |
79 | +\hline | |
80 | +\textbf{Date} & \textbf{Instructor} & \textbf{Title} \\ | |
81 | +\hline | |
82 | +WS 04/05 & Sascha Frank & First steps with \LaTeX \\ | |
83 | +\hline | |
84 | +SS 05 & Sascha Frank & \LaTeX \ Course serial \\ | |
85 | +\hline | |
86 | +\end{tabular} | |
87 | +\end{frame} | |
88 | + | |
89 | + | |
90 | +\begin{frame}\frametitle{Tables with pause} | |
91 | +\begin{tabular}{c c c} | |
92 | +A & B & C \\ | |
93 | +\pause | |
94 | +1 & 2 & 3 \\ | |
95 | +\pause | |
96 | +A & B & C \\ | |
97 | +\end{tabular} | |
98 | +\end{frame} | |
99 | + | |
100 | + | |
101 | +\section{Section no. 4} | |
102 | +\subsection{blocs} | |
103 | +\begin{frame}\frametitle{blocs} | |
104 | + | |
105 | +\begin{block}{title of the bloc} | |
106 | +bloc text | |
107 | +\end{block} | |
108 | + | |
109 | +\begin{exampleblock}{title of the bloc} | |
110 | +bloc text | |
111 | +\end{exampleblock} | |
112 | + | |
113 | + | |
114 | +\begin{alertblock}{title of the bloc} | |
115 | +bloc text | |
116 | +\end{alertblock} | |
117 | +\end{frame} | |
118 | + | |
119 | +\section{Section no. 5} | |
120 | +\subsection{split screen} | |
121 | + | |
122 | +\begin{frame}\frametitle{splitting screen} | |
123 | +\begin{columns} | |
124 | +\begin{column}{5cm} | |
125 | +\begin{itemize} | |
126 | +\item Beamer | |
127 | +\item Beamer Class | |
128 | +\item Beamer Class Latex | |
129 | +\end{itemize} | |
130 | +\end{column} | |
131 | +\begin{column}{5cm} | |
132 | +\begin{tabular}{|c|c|} | |
133 | +\hline | |
134 | +\textbf{Instructor} & \textbf{Title} \\ | |
135 | +\hline | |
136 | +Sascha Frank & \LaTeX \ Course 1 \\ | |
137 | +\hline | |
138 | +Sascha Frank & Course serial \\ | |
139 | +\hline | |
140 | +\end{tabular} | |
141 | +\end{column} | |
142 | +\end{columns} | |
143 | +\end{frame} | |
144 | + | |
145 | +\subsection{Pictures} | |
146 | +\begin{frame}\frametitle{pictures in latex beamer class} | |
147 | +\begin{figure} | |
148 | +\includegraphics[scale=0.5]{PIC1} | |
149 | +\caption{show an example picture} | |
150 | +\end{figure} | |
151 | +\end{frame} | |
152 | + | |
153 | +\subsection{joining picture and lists} | |
154 | + | |
155 | +\begin{frame} | |
156 | +\frametitle{pictures and lists in beamer class} | |
157 | +\begin{columns} | |
158 | +\begin{column}{5cm} | |
159 | +\begin{itemize} | |
160 | +\item<1-> subject 1 | |
161 | +\item<3-> subject 2 | |
162 | +\item<5-> subject 3 | |
163 | +\end{itemize} | |
164 | +\vspace{3cm} | |
165 | +\end{column} | |
166 | +\begin{column}{5cm} | |
167 | +\begin{overprint} | |
168 | +\includegraphics<2>{PIC1} | |
169 | +\includegraphics<4>{PIC2} | |
170 | +\includegraphics<6>{PIC3} | |
171 | +\end{overprint} | |
172 | +\end{column} | |
173 | +\end{columns} | |
174 | +\end{frame} | |
175 | + | |
176 | + | |
177 | +\subsection{pictures which need more space} | |
178 | +\begin{frame}[plain] | |
179 | +\frametitle{plain, or a way to get more space} | |
180 | +\begin{figure} | |
181 | +\includegraphics[scale=0.5]{PIC1} | |
182 | +\caption{show an example picture} | |
183 | +\end{figure} | |
184 | +\end{frame} | |
185 | + | |
186 | + | |
187 | + | |
188 | +\end{document} | |
\ No newline at end of file |