GeneralList of Figures in Appendix

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
latexjess
Posts: 1
Joined: Thu May 22, 2008 12:39 am

List of Figures in Appendix

Post by latexjess »

Hi --

I've been trying to get a List of Figures to appear on the first page of the Appendix... but nothing seems to work.

Does anyone have experience with this issue?

-latexjess

(I'm editing in TexMaker)

Recommended reading 2024:

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

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Stefan Kottwitz
Site Admin
Posts: 10335
Joined: Mon Mar 10, 2008 9:44 pm

List of Figures in Appendix

Post by Stefan Kottwitz »

Hi latexjess,

that shouldn't be a problem. Try this code:

Code: Select all

\documentclass[a4paper,10pt]{book}
\begin{document}
\begin{figure}
\centering
  Text
\caption{Test Figure}
\end{figure}
\appendix
\listoffigures
\end{document}
What is not working for you? Do you get error messages, warnings, or is the list missing?

Stefan
LaTeX.org admin
Psqad
Posts: 3
Joined: Tue Jun 24, 2008 12:26 am

Re: List of Figures in Appendix

Post by Psqad »

hi Stefan,
with your code i get on the end of my document(after my figure) a list of figures, however the appendix is not included into the toc.
my problem is to see appendix into toc and when the appendix start, i like to see "appendix" as if was a chapter. furthermore i like to see "appendix A-1 -- figure bla"
i continue my search and maybe you have the magic solution...
greetings,
Psqad
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

List of Figures in Appendix

Post by localghost »

Psqad wrote:[...] with your code i get on the end of my document(after my figure) a list of figures, however the appendix is not included into the toc. my problem is to see appendix into toc and when the appendix start, i like to see "appendix" as if was a chapter. [...]
The appendix package should let you do what you want. Refer to its documentation to get things work.
Psqad wrote:[...] furthermore i like to see "appendix A-1 -- figure bla". i continue my search and maybe you have the magic solution [...]
You may explain that a little bit more in detail. I wonder where you want to see this. Perhaps my first advice could be helpful here, too.


Best regards and welcome to the board
Thorsten¹
Psqad
Posts: 3
Joined: Tue Jun 24, 2008 12:26 am

Re: List of Figures in Appendix

Post by Psqad »

thx for the reply...

well i learned that it is not needed to put the appendices into the toc :oops: . now it shows only an A, and as i have 3 figures; A.1 , A.2 , A.3 are show in the toc
i am happy with that....

now the hard part of cite in apa style......

GrtzzZ,
p
Post Reply