at this moment, I am struggling to place the legend of a table underneath the table but keeping the title (Table 1, for example) above the table.
In the following code I provide a small table, where the title and the legend both are placed above.
Code: Select all
\documentclass[10pt]{article}
\begin{document}
\begin{table}[h]
\begin{center}
\caption{Example table}
\begin{tabular}{ccc}\hline
1&1&1\\
2&2&2\\
3&3&3\\
\hline
\end{tabular}
\end{center}
\end{table}
\end{document}
Albart