答案1
根据要求,提供一个用于\multicolumn
更改单元格格式的示例。
请注意,如果 X 字段比“适合”条目短,则会浪费段落右侧的空间。如果“必须适合”条目太长,它将超出表格的边缘,并且(有趣的是)X 字段将缩小。
\documentclass[border=2pt]{standalone}
\usepackage{tabularx}
\begin{document}
\begin{tabularx}{6cm}{|r|X|}
\hline
\multicolumn{1}{|X|}{All X fields are the same width.} & \multicolumn{1}{c|}{Must fit.}\\
\hline
Will fit. & All X fields are the same width.\\
\hline
\end{tabularx}
\end{document}