Con este MWE, intento recrear una tabularx
tabla con tabulary
(el C
tipo de columna está integrado):
\documentclass{article}
\usepackage{tabularx}
\usepackage{tabulary}
\begin{document}
\begin{tabularx}{\linewidth}{|>{\centering\arraybackslash}X|}
\hline
tabularx \\
\hline
\end{tabularx}
\begin{tabulary}{\linewidth}{|C|}
\hline
tabulary \\
\hline
\end{tabulary}
\end{document}
Pero la tabulary
mesa no tiene linewidth
. ¿Qué estoy haciendo mal?