Graphics, Figures & Tables ⇒ Table Caption Position
Table Caption Position
I would like to know if there is a way to position a table caption flush with the left edge of the table? This is for tables that are less than page width and are centered on the page. Thanks.
NEW: TikZ book now 40% off at Amazon.com for a short time.

Table Caption Position
Hi,
if you want to limit the caption width to the table width then the floatrow package could be useful. Take a look at the following simple example:
Refer to the package documentation for further information.
if you want to limit the caption width to the table width then the floatrow package could be useful. Take a look at the following simple example:
Code: Select all
\documentclass{report}
\usepackage{floatrow}
\begin{document}
\begin{table}
\begin{floatrow}
\ttabbox
{\begin{tabular}{|ccc|}\hline
column 1 & column2 & column3 \\\hline
\end{tabular}}%
{\caption{An example of a table whose caption width equals the width of the
table}\label{tab:test}}
\end{floatrow}
\end{table}
\end{document}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Re: Table Caption Position
That is what I wanted. Thank you very much.