blob: 742497f5331f387e251c7d24f794f62ec94ab5bf (
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
|
% -*- TeX -*- -*- US -*-
\documentclass{slides}
%% just uncomment one of the three following \usepackage
\usepackage[slides]{aecc}
%\usepackage[slides]{aeguills}
%\usepackage[T1]{fontenc}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
%========================
\begin{slide}
\textbf{This is a sample slide}
Here is normal slide text.
Here are french accented letters:\\
\'a\`e\'e\^e\^e\^\i\^u\"\i\"u\"e\c c
\textit{This is italic}
\[
y_i = \beta_0 + \sum_{k=1}^n \beta_k x_{ik} + u_i
\]
Here are normal numbers \\
0123456789 and the same in math mode \\
$0123456789$.
\begin{verbatim}
This is verbatim text \end{verbatim}
{\Large Large} {\small small}
{\slshape\bfseries slanted bold}
\end{slide}
\end{document}
|