I am using threeparttable for adding notes to my table. Here is a minimal working example:
\documentclass[12pt]{memoir}
\usepackage[para,online,flushleft]{threeparttable}
\begin{document}
\par
Lets test the threeparttable package.
\begin{table}[h]
\caption{Some very informative caption}
\begin{center}
\begin{threeparttable}
\begin{tabular}{c c c c}
\toprule
\textbf{1st Column} & \textbf{2nd Colimn} & \textbf{3rd Colimn} & \textbf{4th Colimn} \\ \midrule
QWERTY\tnote{1} & & & \\
ASDFGH\tnote{2} & & & \\ \bottomrule
\end{tabular}
\begin{tablenotes}
\item[1] qwerty; \item[2] asdfgh
\end{tablenotes}
\end{threeparttable}
\end{center}
\label{table:simDisimCoefNewDef}
\end{table}
\end{document}
which produce the following:

So what I need is to set minimum distance between notes on same line like in normal text. Is that possible?


\centeringis to be used instead ofcenterand that the\labelshould be nearer to the caption (just in case some\refstepcountercomes along). – egreg Jun 11 '13 at 23:001emto6emI'm not sure why Donald had quite such a complicated collection, but he knows what he's doing:-) basically the idea is to allow extra flexibility between the notes and to encourage line breaking there rather than inside the note if possible. – David Carlisle Jun 12 '13 at 07:35