根据内容调整 booktabs 表格宽度

根据内容调整 booktabs 表格宽度

有人能告诉我如何根据内容调整 tabluarx 的宽度吗?请考虑以下工作示例:

\documentclass[a4paper,twoside]{article}
\usepackage{booktabs}    % for 'tabularx' environment
\begin{document}
\begin{table}[H]
    \centering
    \small
    \begin{tabularx}{0.5\textwidth}{lrrrr}
        \toprule
        Parameter & mean & 2.5\% & 97.5\% & $\hat{R}$\\
        \midrule
        Intercept & 6.99 & 6.93 & 7.06 & 1\\
        \bottomrule
    \end{tabularx}
\end{table}
\end{document}

在示例中,我将表格的宽度设置为\textwidth,但理想情况下,我希望表格能够根据其内容自动调整宽度,以便每列的宽度恰好满足需要。

答案1

正如评论中所建议的:使用tabular而不是tabularx提供解决方案。

相关内容