我想使用\makecell
with 在我的表格中添加换行符。但是,这会导致额外的列宽,其宽度与文本未分成两行时的宽度相同。据我所知,这似乎只是 AASTeX 文档类的问题。基本 不会出现这种情况article
。
有没有什么建议可以\makecell
在 AASTeX 文档中提供适当的列宽?
例子:
\documentclass{aastex63}
\usepackage{booktabs}
\usepackage{makecell}
\begin{document}
\begin{tabular}{lll}
\toprule
header0 & \makecell{header1\\text after linebreak} & header2 \\
\midrule
0 & 1 & 2 \\
\bottomrule
\end{tabular}
\end{document}