为什么第一列不缩小以确保下表\linewidth
中的表格宽度相等tabulary
?(我知道我可以使用例如tabularx
,但在这里我想使用tabulary
。)
\documentclass{article}
\usepackage{showframe}
\usepackage{booktabs}
\usepackage{tabulary}
\begin{document}
\noindent\begin{tabulary}{\linewidth}[t]{
@{}
L
c
c
p{0.4\linewidth}
c
c
@{}
}
\toprule
A & B & C & D & E & F \tabularnewline
\midrule
a a a a a a a a a a a a a a & b & c & d d d d d d d d d d d d d d d d d d d d d d d d d d d d d d d d d d d d d d d d & eeeeee & ffffff \tabularnewline
\bottomrule
\end{tabulary}
\end{document}