14 lines
217 B
TeX
14 lines
217 B
TeX
\documentclass{article}
|
|
|
|
\usepackage{tabularx}
|
|
|
|
\begin{document}
|
|
\begin{tabularx}{6cm}{llXX}
|
|
1 & 2 & 3 & 4 \\
|
|
\end{tabularx}
|
|
|
|
\begin{tabularx}{\linewidth}[pos]{llXX}
|
|
1 & 2 & 3 & 4 \\
|
|
\end{tabularx}
|
|
\end{document}
|