手动指定下括号文本的宽度?

手动指定下括号文本的宽度?

我想增加\underbracetext命令的宽度。目前我有:

\begin{table}[H]
\begin{adjustwidth}{-0.15in}{-0in}
\footnotesize
\centering
\begin{tabular}{lllllllll}
\textbf{Lamotrigine} & \textbf{250mg}       & \textbf{in} & \textbf{the}        & \textbf{morning}     & \textbf{,}     & \textbf{200mg}      & \textbf{at}        & \textbf{night} \\
\multicolumn{1}{c}{\underbracetext{\textbf{Drug}}} & \multicolumn{4}{c}{\underbracetext{\textbf{Direction 1}}} & & \multicolumn{3}{c}{\underbracetext{\textbf{Direction 2}}}
 \\
\end{tabular}
\end{adjustwidth}
\end{table}

产生:

在此处输入图片描述

但我想增加第二和第三个支架的长度,以便第二个支架跨越从 250 到早上,第三个支架跨越 200 毫克到晚上。

即当我说跨越时,我的意思是从单词开始的地方开始下划线,而不是从中间开始。

答案1

您需要将其像这样放在表中吗?如果不需要,您可以这样做

\documentclass{article} 
\usepackage{amsmath}
\begin{document} 
\[
\underbrace{\textbf{Lamotrigine}}_{\displaystyle\text{\textbf{Drug}}}~
\underbrace{\text{\textbf{250mg in the morning}}}_{\displaystyle\textbf{\textbf{Direction
1}}},~\underbrace{\text{\textbf{200mg at night}}}_{\displaystyle\textbf{Direction 2}}
\]
\end{document}

在此处输入图片描述

还有其他几种可能性,例如 TiZ。

相关内容