I want to use the outline package. If I understand right, I don't have to do anything special to get the package, other than use \usepackage{outline}, it should be available to me (edit: should I mention that I am running TeXnicCenter 1.0). But I downloaded the outline example.tex and tried to compile it and get many errors. The first error is:
Code: Select all
l.30 \item
{\bf Introduction }
Try typing <return> to proceed.
If that doesn't work, type X <return> to quit.
! LaTeX Error: Something's wrong--perhaps a missing \item.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.30 \item
{\bf Introduction }
Try typing <return> to proceed.
If that doesn't work, type X <return> to quit.
! LaTeX Error: Lonely \item--perhaps a missing list environment.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.30 \item
{\bf Introduction }
Try typing <return> to proceed.
If that doesn't work, type X <return> to quit.
Underfull \hbox (badness 10000) detected at line 30
[][]
[]
! Undefined control sequence.
<argument> \OL@i
\item
Code: Select all
\documentclass{report}
\usepackage{outline}
...
\begin{document}
\begin{outline}
\item {\bf Introduction }
...
Thanks