Generalhelp needed on list of figures/tables

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
Manish
Posts: 1
Joined: Sat Jan 26, 2008 6:18 pm

help needed on list of figures/tables

Post by Manish »

Hi,

I am having the following three difficulties,

1) I don't want a specific figure in my thesis to get included in the list of figures. I am using sidewaysfigure to insert that particular figure.

2) I want to manually insert an entry into my list of tables.

3) I want to insert a reference at the end of the bibliography, which I have not cited anywhere in the thesis.

I will be very grateful if somebody sort them out.

Thanks
Dekar

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

gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

help needed on list of figures/tables

Post by gmedina »

There's no need to duplicate your posts (as in this other thread).

1) Use the caption package and the optional argument of the \caption command. Add in the preamble

Code: Select all

\usepackage{caption}
and then something like

Code: Select all

\begin{figure}[!ht]
  \centering
  \fbox{Test figure 1}
  \caption[]{Test figure 1}%using an empty optional argument
                           %will avoid inclusion in the lof
\end{figure}
2) You can use the \addcontentsline command;

Reamrk: You can achieve further customization of the ToC, LoF and LoT using the tocloft package.

3) Assuming you are creating your bibliography using BIBTeX, you can use the \nocite command; i.e., use something like

Code: Select all

\nocite{key_ref}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
balf
Posts: 158
Joined: Sat Jan 12, 2008 1:11 am

Re: help needed on list of figures/tables

Post by balf »

Another approach : the titletoc package (companion package of titlesec) has commands for partial tocs, lofs and lots, more generally for partial lists in the form of a few commands: \startlist, stoplist, \resumelist and \printlist.

B.A.
Post Reply