在表格中使用首字母缩略词

在表格中使用首字母缩略词

在表格中使用首字母缩略词时,单元格顶部会出现一个额外的空行。有什么方法可以避免这种情况吗?

\acrodef{Test}{Lorem ipsum dolor sit amet consectetur adipiscing elit}

\begin{tabular}{p{0.25\textwidth}p{0.25\textwidth}}
Test & \Ac{Test} \\
\end{tabular}

在此处输入图片描述

答案1

可能是\Ac编程不当,因为它以垂直模式而不是水平模式启动。您可以通过在 前面添加\leavevmode\hspace{0pt)来弥补这一点。\mbox{}Ac

\begin{tabular}{p{0.25\textwidth}p{0.25\textwidth}}
Test & \mbox{}\Ac{Test} \\
\end{tabular}

在此处输入图片描述

相关内容