Graphics, Figures & Tables ⇒ Two series of caption
Two series of caption
Here again, afer googling quite a bit.
While composing a document, figures/tables are inserted in a suitable place within the text, according to the [!htbp] preferencies.
Quite often you don't want big or complex figures/tables mixed within your text, and you prefer to send them to the end of the document, in a different section and with a specific caption series. Someting like getting Figure 1, 2...n when you put your figures/tables in the middle of the document and Annex 1, 2...n when you put them at the end.
I've been trying to deal with \appendix without success.
is ther any clue I can follow?
Thanks!
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
-
jediwhelan
- Posts: 16
- Joined: Fri Jul 25, 2008 5:54 pm
Re: Two series of caption
[insert figure \ref{blahblah} about here]
Is this what you meant?
Two series of caption
Code: Select all
\documentclass[a4paper]{book}
\usepackage{lipsum}
\usepackage[demo]{graphicx}
\usepackage{floatrow}
\DeclareNewFloatType{annex}% A new float type for large figures
{name=Annex}
\begin{document}
\chapter{A chapter}
\lipsum[1]
\begin{figure}[!htb]
\includegraphics[width=5cm,height=3cm]{test}
\caption{A figure}
\end{figure}
\section{A section}
\lipsum[1]
\begin{figure}[!htb]
\includegraphics[width=5cm,height=3cm]{test}
\caption{Another figure}
\end{figure}
\lipsum[1]
\appendix
\chapter{Large figures}
\lipsum[1-2]
\begin{annex}[!htb]
\includegraphics[width=11cm,height=14cm]{test}
\caption{And one more figure}
\end{annex}
\end{document}