Graphics, Figures & Tables ⇒ Table Caption Wrapping
-
- Posts: 7
- Joined: Fri Apr 10, 2009 12:16 am
Table Caption Wrapping
Thank you for your help.
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
Table Caption Wrapping
sounds like a job for the floatrow package; a little example:
Code: Select all
\documentclass{article}
\usepackage{floatrow}
\begin{document}
\begin{table}
\ttabbox
{\caption{A table with a caption with a width that equals that of
the table}\label{tab:test}}
{\begin{tabular}{ccc}\hline
a & b & c\\\hline\end{tabular}}
\end{table}
\end{document}
-
- Posts: 7
- Joined: Fri Apr 10, 2009 12:16 am
Re: Table Caption Wrapping
Thank you!