
Acabei de começar a usarmesa de três partespacote. Consegui inserir notas de tabela ao redor e elas estão sendo exibidas corretamente em cada tabela. Meu problema é que as tags numéricas na coluna se sobrepõem ao conteúdo da célula, tornando-se impossíveis de ler e também muito feias. Como posso fazer com que as etiquetas numéricas tenham seu próprio espaçamento e não fiquem desordenadas? obrigado
Aqui está meu 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}