Graphics, Figures & TablesCaption for Figure outside Float Environment

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
mottenlogo
Posts: 2
Joined: Wed May 23, 2012 2:03 pm

Caption for Figure outside Float Environment

Post by mottenlogo »

Hey Community,

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}

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

User avatar
Stefan Kottwitz
Site Admin
Posts: 10350
Joined: Mon Mar 10, 2008 9:44 pm

Caption for Figure outside Float Environment

Post by Stefan Kottwitz »

Hi,

welcome to the board!

Use \captionof this way.

Code: Select all

\captionof{figure}{your caption text}
Stefan
LaTeX.org admin
mottenlogo
Posts: 2
Joined: Wed May 23, 2012 2:03 pm

Re: Caption for Figure outside Float Environment

Post by mottenlogo »

Thank you very much, that works perfect! And thank you for your fast reply!
Cheers
Post Reply