I am trying to have a big table (break across pages) with footnotes and a column with adjustable width. The MWE is the following.
\documentclass{scrartcl}
\usepackage{blindtext}
\usepackage{tabu,longtable}
\usepackage{threeparttable} % <-- the package below already loads it
\usepackage[referable]{threeparttablex}
\usepackage{booktabs}
\usepackage{tabularx}
\usepackage{hyperref}
\usepackage{etoolbox}
\makeatletter
\chardef\TPT@@@asteriskcatcode=\catcode`*
\catcode`*=11
\expandafter\patchcmd\csname\string\threeparttable\endcsname
{\TPT@hookin{tabular}}
{\TPT@hookin{tabular}\TPT@hookin{tabu}}
{}{}
\catcode`*=\TPT@@@asteriskcatcode
\makeatother
\begin{document}
\listoftables
\bigskip
\blindtext
\begin{ThreePartTable}
\begin{TableNotes}
\footnotesize
\item[a] \label{tn:aa} Footnote in long table 1 (not linked).
\item[b] \label{tn:bb} Footnote in long table 2.
\source Some general note
\end{TableNotes}
\captionof{table}{A long table} % <-- caption inside longtabu within ThreePartTable does not produce correct hyperlink in LOT
\vspace{-\abovecaptionskip} % <-- removes the extra space (correct value?)
\begin{longtabu}to\linewidth{llX}
%\caption{A long table} \\ % <-- see above why it is commented
\toprule
Column 1 & & Column 2 \\
\midrule
\endfirsthead
\caption[]{A long table} \\
\toprule
Column 1 & & Column 2 \\
\midrule
\endhead
\cmidrule{3-3}
\multicolumn{3}{r}{\small\textit{continued}}
\endfoot
\bottomrule
\insertTableNotes\\
\endlastfoot
AAAA\tnotex*{tn:aa} & & BBBB \\
\newpage % <-- just testing break page
CCCC & & DDDD\tnotex{tn:bb} \\
\end{longtabu}
\end{ThreePartTable}
\blindtext
\end{document}
The problem is that \caption{} inside longtabu within ThreePartTable does not produce correct hyperlink in LOT. So I am an alternative solution using \captionof{}. But this not good because it does not have a consistence skip between caption and the firs line in the table. I would like to use \caption{}, does anyone know a solution?

threeparttablex.styand the problem seems to be related with the code:\renewcommand\tablenotes{% \let\TPTL@item=\item \renewcommand\item[1][]{\TPTL@item[##1]% \phantomsection\protected@edef\@currentlabel{##1}} \TPTL@generator\note{\TPTLnotename} \TPTL@generator\source{\TPTLsourcename} \TPTL@font\TPTL@tablenotes}. However if I remove the\phantomsection\caption{}seems to produce a correct link in LOT. But why? Is there any side drawbacks? – cacamailg Sep 2 '12 at 13:16