[Tex/LaTex] Remove automatic table headline

captionstables

I use LaTeX for creating PDF output from R – not to create long documents. Hence the automatic Table 1: <caption> above the table is rather annoying. How can I remove the automatically generated Table 1:? Is it at all possible?

Best Answer

Use the caption package with the labelformat=empty option:

\documentclass[10pt,letterpaper]{article}

\usepackage[labelformat=empty]{caption}

\begin{document}

\begin{table}
\centering
\begin{tabular}{lll}
1 & 2 & 3 \\
a & b & c
\end{tabular}
\caption{Some super-secret data.}
\end{table}

\end{document}