\dotfill 在 w 列內不起作用

\dotfill 在 w 列內不起作用

在此範例中,插入列\dotfillwr{3cm}不會給出任何結果

\documentclass[12pt]{article}
\usepackage{array}

\begin{document}

\begin{tabular}{|p{3.5cm}|}
\hline
 \dotfill \\
\hline
\end{tabular}
\hfil
\begin{tabular}{|wr{3.5cm}|}
\hline
 \dotfill \\
\hline
\end{tabular}

\end{document}

在此輸入影像描述

答案1

在將w內容放入指定尺寸的容器之前,將內容裝箱至其自然寬度,並且填充膠水的自然寬度為0pt。

它適用於W

\documentclass[12pt]{article}
\usepackage{array}

\begin{document}

\begin{tabular}{|p{3.5cm}|}
\hline
 \dotfill \\
\hline
\end{tabular}
\hfil
\begin{tabular}{|Wr{3.5cm}|}
\hline
 \dotfill \\
\hline
\end{tabular}

\end{document}

但我不確定我們是否應該讓它與 一起工作w,我會問弗蘭克:-)

相關內容