I'm trying to use ctable since it's much easier to work with than threeparttable and all of its additional packages but I get an error stating that "Command \tnote already defined".
I think it's something to do with the apa6 class but I don't know how to change that.
\documentclass[man]{apa6}
\usepackage{ctable}
\shorttitle{}
\begin{document}
\ctable[
caption = Some caption,
pos = h
]{ccc}{
}{\FL
A & B & C\ML
1 & 2 & 3\NN
4 & 5 & 6\LL
}
\end{document}



\tnotecommand for use in those tables. You may have to stick with its use of threeparttable. – Mike Renfro Apr 8 '12 at 0:06