Com este MWE, tento recriar uma tabularx
tabela com tabulary
(o C
tipo de coluna que está sendo incorporado):
\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}
Mas a tabulary
mesa não tem linewidth
. O que estou fazendo de errado?