\dotfill이 w 열 내부에서 작동하지 않습니다.

\dotfill이 w 열 내부에서 작동하지 않습니다.

이 예에서는 열 \dotfill내부에 삽입하면 결과가 나오지 않습니다.wr{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. Frank에게 물어보겠습니다.:-)

관련 정보