|
Sign in |
|
foiltex is a LaTeX document class which lets you create foils using most of the available LaTeX commands and environments. Different
options let you specify head and/or foot rules, title pages,
etc. The macro Processing a foiltex sourcefile using LaTeX creates DVI output in the usual way, using pdfTeX (pdfLaTeX) allows you to create high quality PDF output. With latex2html and the FoilHTML package (look for it at your nearest CTAN mirror) you can create HTML output from your foiltex source files.
Example 1.3. foiltex Example
\documentclass[a4paper,landscape,headrule]{foils}
\usepackage[latin1]{inputenc}
\usepackage{graphicx}
\title{Some Title}
\author{Some User \texttt{<some.user@some.net>}}
\date{Apr 01, 2001}
\MyLogo{}
\rightfooter{}
\leftheader{Project Presentation}
\rightheader{Project Title\quad\textsf{\tiny[\thepage]}}
\begin{document}
\maketitle
\begin{abstract}
foo foo foo foo foo foo foo foo foo foo foo foo foo
foo foo foo foo foo foo foo foo foo foo foo foo foo
\end{abstract}
\foilhead{Introduction}
\begin{itemize}
\item Topic 1
\item Topic 2
\item ...
\end{itemize}
\foilhead{Overview}
\begin{center}
\includegraphics{overview.eps}
\end{center}
\end{document}
|