三部分表格注释重叠文本

三部分表格注释重叠文本

我刚开始使用三部分表包。我能够在四周插入表格注释,并且它们在每个表格下都正确显示。我的问题是列中的数字标签与单元格内容重叠,变得无法阅读并且非常难看。我怎样才能让数字标签有自己的间距并且不会变得混乱?谢谢

这是我的 MWE

\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{csquotes}
\usepackage{tabulary}   
\usepackage{threeparttable}

\begin{document}
\begin{table}[h] \label{tab: HposHnegAnag}
\begin{threeparttable}
\caption{\textbf{Demographic and anamnestic characteristics}}
\begin{tabulary}{\textwidth}{LL}
Characteristics & Value\\
Height & 1.80 m\\
Weight & 75 kg\\
BMI\tnote{1} & 23.14\\
\end{tabulary}
\begin{tablenotes}
\item[1] Body Mass Index
\end{tablenotes}
\end{threeparttable}
\end{table}
\end{document}

相关内容