1

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}

TobiasDK
  • 808
  • 5
  • 19
  • @egreg, can I use some \phantom function to mimic the vertical size of the letter b in 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
  • 1
    You also can use \item[\smash{b}]. – Bernard Jun 10 '16 at 16:38
  • One other ugly feature is the bad horizontal alignment of the text after the items. The letter S is far more to the left than the letter C! – TobiasDK Jun 10 '16 at 16:53