LaTeX file could not be processed. This is probably due to a LaTeX error in your input.
This page describes the most likely cause of such errors, and some of the features of LaTeX you can use within the form. If you have any questions, please email Toby Hall.
Instead, you should precede them with backslashes: \&, \%, \$, \#, \_, \{, \}, \~. (To get \ itself, you need to type $\backslash$.)
\begin{itemize}
\item First point.
\item Second point.
\item Further points.
\end{itemize}
This will produce
To produce an enumerated list you should type
\begin{enumerate}[1.]
\item Point 1.
\item Point 2.
\end{enumerate}
This will produce
You can get a list enumerated a), b), c) etc. by typing \begin{enumerate}[a)] instead.
Since these forms are primarily to be used electronically, you might also want to include some colours: {\color{blue} this is blue} will produce this is blue.
|