请考虑以下示例:
\documentclass{article}
\usepackage{array}
\usepackage{calc}
\begin{document}
\begin{tabular}{p{\textwidth - 3cm}|p{1cm}<{foo}}
Caption1 & Caption2\\
Text & \\
Text & \\
Text & \\
% much more rows
\end{tabular}
\end{document}
现在我的问题是,如何修改它以使其foo
适用于除第一行之外的每一行?
答案1
仅用于\multicolumn
标题行。
\documentclass{article}
\usepackage{array}
\usepackage{calc}
\begin{document}
\begin{tabular}{p{\textwidth - 3cm}|p{1cm}<{foo}}
\multicolumn{1}{p{\textwidth - 3cm}|}{Caption1} & \multicolumn{1}{p{1cm}}{Caption2}\\
Text & \\
Text & \\
Text & \\
% much more rows
\end{tabular}
\end{document}