When using subdepthfor nice looking equations, the tablenotes in threeparttable get messed up. Any idea how to get even vertical space between items in tablenotes? Have tried using \usepackage[low-sup]{subdepth} with no good result.
MWE:
\documentclass{article}
\usepackage{threeparttable}
\usepackage{subdepth}
\begin{document}
\begin{equation}
A = \frac{\left(\phi+\epsilon_A^\prime\right)-\epsilon_A}{\left(1+\epsilon_A^\prime\right)-\epsilon_A}
\end{equation}
\begin{table}[htbp]
\caption{}
\label{tableA}
\centering
\begin{threeparttable}
\begin{tabular}{ll}
\hline
Name & Value \\
\hline
TestA\tnote{a} & 1000000000000000000000000 \\
TestB & 10 \\
TestC & 10 \\
TestD & 10 \\
\hline
\end{tabular}
\footnotesize
\begin{tablenotes}
\item[a]{Salinity data from somewhere}
\item[b]{Chemical product sheet}
\item[c]{Standard density of water}
\item[d]{Calculated value}
\end{tablenotes}
\end{threeparttable}
\end{table}
\begin{table}[htbp]
\caption{}
\label{tableB}
\centering
\begin{threeparttable}
\begin{tabular}{ll}
\hline
Name & Value \\
\hline
TestA\tnote{a} & 1000000000000000000000000 \\
TestB & 10 \\
TestC & 10 \\
TestD & 10 \\
\hline
\end{tabular}
\footnotesize
\begin{tablenotes}
\item[a]{Salinity data from somewhere}
\item[a]{Chemical product sheet}
\item[a]{Standard density of water}
\item[a]{Calculated value}
\end{tablenotes}
\end{threeparttable}
\end{table}
\end{document}


low-supoption works. – Bernard Jun 10 '16 at 16:07Ais not aligned any longer in the equation :-( – TobiasDK Jun 10 '16 at 16:10bline to be too high, so the\lineskipmechanism is used. This doesn't happen with theaexponent, because it lacks the ascender. – egreg Jun 10 '16 at 16:22[low-sup]\phantomfunction to mimic the vertical size of the letterbin all items? – TobiasDK Jun 10 '16 at 16:29\vphantom{b}in all items will do the job. Not the most beautiful solution, but it works!?! – TobiasDK Jun 10 '16 at 16:34\item[\smash{b}]. – Bernard Jun 10 '16 at 16:38Sis far more to the left than the letterC! – TobiasDK Jun 10 '16 at 16:53