Graphics, Figures & Tables ⇒ Table without table number
Table without table number
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
Re: Table without table number
Table without table number
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
\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}