我有下表,如下所示:
当条目“aaaaa...aa”较短时,它将看起来像这样:
在这种情况下,我想保持两列之间的比例,但我找不到解决方案。
\documentclass{article}
\usepackage{xltabular}
\usepackage{hyphenat}
\begin{document}
\begin{table}[h]{\linewidth}
\centering
\begin{xltabular}{\linewidth}{|c|>{\raggedright\arraybackslash}X|}
\hline
\textbf{Architecture} & \textbf{Limitations} \\
\hline
\endfirsthead
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa & blah blah baaaaaaaaaaaaaaaaaa
\\ \hline
Header2 & blah .
\\ \hline
Header3 & blah .
\\ \hline
Header4 & blah blah .
\\ \hline
\end{xltabular}
\end{table}
\end{document}