Graphics, Figures & Tables ⇒ How to get LaTeX not to print "Table X" in front of caption?
How to get LaTeX not to print "Table X" in front of caption?
I want to create a caption for my tables using \caption, and to be able to reference the number of a given table from elsewhere (using \label and \ref), but I don't want \caption to put "Table 1:", "Table 2:", etc. in front of the contents of \caption. Is there any way I can disable this?
Thanks!
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
How to get LaTeX not to print "Table X" in front of caption?
Code: Select all
\renewcommand{\tablename}{}
Re: How to get LaTeX not to print "Table X" in front of caption?
Thanks a lot!
Cheers.
How to get LaTeX not to print "Table X" in front of caption?
Code: Select all
\usepackage[labelformat=empty,labelsep=none]{caption}
Axel