I have a problem with some images in the appendix: With the figure-environment, all images are places at the end of the appendix, although there should be enough space to put the image there.
I helped myself with the package caption, but now the images don't appear on my list of figures and under the image just stands ": caption of image".
What I want is, that the image is sill in the list of figures and that below the image stands: Figure #nr: caption of image"
Where's my mistake?
Code: Select all
\documentclass[a4paper,12pt]{article}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage[ngerman]{babel}
\usepackage{graphicx}
\usepackage[labelfont=bf]{caption}
\begin{document}
\listoffigures
\section{bla bla}
Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text
\begin{appendix}
\section{appendix1}
Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text
\begin{center}
\includegraphics[width=10cm]{image.jpg}%
\captionof{image.jpg}{caption of image}%
\label{label of image}%
\end{center}
Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text Text
\end{appendix}
\end{document}