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
|
\documentclass[11pt]{article}
\usepackage{hevea}
\usepackage{url}
\title{A simple example of the usage of \hevea}
\author{Ralf Treinen\\\url{mailto:treinen@debian.org}}
\begin{document}
\maketitle
This is a very simple example demonstrating some features of \hevea, a
\LaTeX to HTML translator. \hevea knows of course about
\emph{emphasizing text}, \textbf{bold text}, \texttt{typewriter font},
\textsc{small caps}, \textsl{slanted text}, and so on. It can set
displayed formulas
\[
e = mc^2
\]
translate mathematical symbols like
\[
\alpha\beta\gamma\omega \mapsto \Sigma\Pi
\]
and can set tabular material like
\begin{center}
\begin{tabular}{|l|cr|}
\hline
Year & Number & Remarks\\
\hline\hline
1998 & 5 & Bla\\
1999 & 7 & Foo\\
2000 &42 & Schtronk\\
\hline
\end{tabular}
\end{center}
\end{document}
|