Graphics, Figures & Tables ⇒ Captioning a figure as a table
Captioning a figure as a table
I have a quite large table as a *.png file. Is there a way to use include this table as a picture in my document, but having the the caption "Table X" instead of "Figure X"? Because the table is quite large I don't want to remake it in latex.
Thanks in advance!
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
Captioning a figure as a table
just place it in a
{table}
environment:Code: Select all
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\begin{table}[ht]
\caption{A table caption}
\includegraphics{mypicturefile.png}
\end{table}
\end{document}
Re: Captioning a figure as a table
thank you!