Wednesday, July 3, 2013

Latex: Captions both above and below of your table

Hi guys,

As the title says here is what you have to do:

  • first, \usepackage{caption}
\begin{table}
\begin{center}
\caption{caption1}
\label{Table: ABC}
\begin{tabular}{|p{1.5cm}|p{2cm}|p{1.2cm}}
\hline
AAA&BBB&CCC\\
a&b&c\\
\hline
\end{tabular}
\caption*{caption2}
\end{center}
\end{table}

Cheers!