"Martin H�gman" wrote:
> 
> Hi,
> 
> As the subject might have told you, I'm in need of some assistance.
> 
> First of all, I'm writing an essay utilizing the 'Report' type class.
> Now, here's my wee problems:
> 
> - When it comes to footnotes, is there a way to have the numbers continue
> in order, regardless of chapter? I.E. footnotes not restarting at 1 when
> a new chapter is started?

the easiest way is to patch the reprot-class file. this is possible,
if have have your own tex-installtion. in file 
/usr/share/texmf/tex/latex/base/report.cls
comment the line \@addtoreset{footnote}{chapter}
(%% \@addtoreset ...)

otherwise you have to define yout own counter and renew the 
thefootnote-command.

> - Images get the primary chapternumber:imagenumber (I.E. Fig. 3.1) - Is
> there a way to make all images go with just one number, and like the
> footnotes, have them go in sequenmce regadless of chapter?

you have to define your own counter or patch the class-file too.
its the line \setcounter{figure}[chapter]

\newcounter{fig}
\renewcommand\thefigure{\refstepcounter{fig}\arabic{fig}}

resetting the footnote counter by chapter belongs to report-class.
the other ones have continuing counting.

> - Is it possible to remove the pagenumber of the 'Table of contents'
> page?

\thispagestyle{empty}


Herbert


-- 
[EMAIL PROTECTED]
http://perce.de/voss

Reply via email to