Graphics, Figures & Tables ⇒ Table without table number
Table without table number
How can I have table caption without table number?
Re: Table without table number
You could either typeset the caption for yourself (without label and number the caption is usually just plain text) or use \caption* offered by the caption package.
Table without table number
Hi Mir,
if you want to suppress only the number but retaining the name ("Table"), then you could redefine the \thetable command, as the following example suggests:
if you want to suppress only the number but retaining the name ("Table"), then you could redefine the \thetable command, as the following example suggests:
Code: Select all
Code, edit and compile here:
\documentclass{article}\begin{document}\begin{table}[!ht]\renewcommand\thetable{}\centering\rule{5cm}{3cm}% to simulate a table\caption{a test table}\label{tab:test}\end{table}\end{document}
1,1,2,3,5,8,13,21,34,55,89,144,233,...