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