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 57 58 59 60 61 62 63
|
% -*- latex -*-
% read by l2htest.tex
\section{Some basic stuff}
This is some simple text, containg ``a quote'' and
some \verb+verbatim text !"$ $%&/+
\subsection{Fonts}
This sections has text in several font styles: This is
\textbf{boldface} and this is \emph{emphasized}. The
same with old syntax {\bf boldface} and {\em emphasized}.
Now we'll come to some mixed ones: {\bf boldface with
{\em emphasis} back boldface}.
And the sizes:{\large This is large} and {\small this is
small}. Now here's some {\large large {\bf boldface} and
{\em emphasis}} and {\small small {\bf boldface} and
{\em emphasis}}.
Here we include some text, but before we switch on
{\Large Large and {\bf boldface
\input{basicinc}%
... back again} not boldface}.
This should be some bold stars: {\bf** bold} No more bold here.
\subsection{Lists}
Here's a simple itemized list:
\begin{itemize}
\item EMACS stands for Escape Meta Alt Control Shift
\item GNU's not UNIX
\item PNG's not GIF
\end{itemize}
An enumeration:
\begin{enumerate}
\item Perl is king!
\item TCL is nice
\item What is Python?
\item Real programmers prefer \texttt{/bin/sh}
\end{enumerate}
End of this section.
\subsection{Table}
This is a tabular environment:
\begin{tabular}{|ll|}
\hline
Deutsch & English \\
\hline\hline
Ja & Yes \\
Nein & No \\
Morgen & morning \\
\hline
\end{tabular}
|