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
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
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.