三部分註釋重疊文本

三部分註釋重疊文本

我剛開始使用三部分錶包裹。我能夠在各處插入表格註釋,並且它們在每個表格下正確顯示。我的問題是列中的數字標籤與單元格內容重疊,變得無法閱讀並且也非常難看。我怎麼能讓數位標籤有自己的間距而不變得混亂?謝謝

這是我的 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}

相關內容