Graphics, Figures & TablesMake figure appear as table in list of tables

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
LaurensM
Posts: 5
Joined: Wed Oct 10, 2012 12:35 pm

Make figure appear as table in list of tables

Post by LaurensM »

Hello,

I have embarked on the quest to write my PhD thesis in LaTeX as I didn't want to face the same frustrations as my predecessors during the final stages of their manuscript. Still not sure if the steep learning curve outclasses the "word-frustration" ;-).

Anyhow, I am converting my published articles into tex documents. And I have some huge tables that have been imported as figures in the original article. However, they are still tables. Is there a way for figures (that look like tables) to include them as tables, and therefore appear in list of tables?

I have already discovered that with the use of empty caption square brackets I can import figures without them having appear in the list of figures. But how do I link them to the list of tables?

Code: Select all

\begin{figure}
  \centering
  \medskip
  \includegraphics{figure1}
  \caption[]{Caption of figure that does not appear in list of figures}
  \label{fig:figure1}
\end{figure}

Recommended reading 2024:

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

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

User avatar
Stefan Kottwitz
Site Admin
Posts: 10350
Joined: Mon Mar 10, 2008 9:44 pm

Make figure appear as table in list of tables

Post by Stefan Kottwitz »

Hi,

welcome to the board!

You could simply use a table environment instead of a figure environment. \includegraphics can be used within a table environment as well.

Stefan
LaTeX.org admin
LaurensM
Posts: 5
Joined: Wed Oct 10, 2012 12:35 pm

Re: Make figure appear as table in list of tables

Post by LaurensM »

Thanks, that worked just fine. I was overthinking the whole problem :-)
Post Reply