I've been looking for the solution for centering a table... Anything hasn't been useful so far, so I hope somebody can help me.
I want to put a footnote in a table. Here is the code:
Code: Select all
\begin{table}[t!]
\centering
\begin{threeparttable}
\captionsetup{font=small, labelfont=bf, labelsep=period}
\caption[Table]{Text\tnote{a}.}
\label{table1}
{\small
\begin{tabular}{l c c}
%\hline%
X & Y & Z \\
& y & z \\
\hline
X & Y & Z \\
X & Y & Z \\
\hline
\end{tabular}
}
\vspace*{-0.7cm}
\begin{tablenotes}
\item[a] {\footnotesize Footnote}
\end{tablenotes}
\end{threeparttable}
\end{table}
Thanks in advance,
Maria