I'm using LaTeX to write my thesis. I've been using it for some months, so I still consider myself a newbie. I like to write my documents with Kile, then compile them with pdflatex.
The thing is, this is the first time I've included a 'Zero' chapter, for using it as an introduction. I took this as example: http://einstein.drexel.edu/liki/index.p ... and_Tricks. I also needed to include some images. My code would resemble this (partial section):
Code: Select all
\setcounter{chapter}{-1}
\chapter{Introduction}
\pagestyle{headings}
Text paragraph.
\section{Section name}
Another paragraph.
\subsection{Subsection name}
Yep, another one.
\begin{figure}[h!]
\centering
\includegraphics[width=100mm]{image1.png}
\caption{First image}
\end{figure}
Code: Select all
\listoffigures
, instead of1. First Image . . . . . . . . . . . . . . . . . (page)
. The entries for other chapters' images are shown well, e.g.,0.1. First image . . . . . . . . . . . . . . . . (page)
.7.2. Second image from chapter 7 . . . (page)
Is this supposed to be OK? Have I missed something?
Thanks for your support.