General ⇒ Need help with \listoftables and \listoffigures.
-
- Posts: 1
- Joined: Tue Apr 15, 2008 5:28 am
Need help with \listoftables and \listoffigures.
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
Need help with \listoftables and \listoffigures.
Take a look at the following example:
Code: Select all
\documentclass{article}
\usepackage[font=small,labelfont=bf]{caption}[2008/04/01]
\begin{document}
\listoffigures
\cleardoublepage
\listoftables
\cleardoublepage
\begin{figure}[!ht]
\centering
\fbox{Test figure 1}
\caption{test figure 1}
\label{fig:testfigone}
\end{figure}
\begin{table}[!ht]
\centering
\begin{tabular}{c}
test table 1
\end{tabular}
\caption{test table 1}
\label{tab:testtabone}
\end{table}
\newpage
\begin{table}[!ht]
\centering
\begin{tabular}{c}
test table 2
\end{tabular}
\caption{test table 2}
\label{tab:testtabtwo}
\end{table}
\begin{figure}[!ht]
\centering
\fbox{Test figure 2}
\caption{test figure 2}
\label{fig:testfigtwo}
\end{figure}
\end{document}