General ⇒ help needed on list of figures/tables
help needed on list of figures/tables
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
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
help needed on list of figures/tables
1) Use the caption package and the optional argument of the \caption command. Add in the preamble
Code: Select all
\usepackage{caption}
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}
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}
Re: help needed on list of figures/tables
B.A.