Tabularx 中的列太宽

Tabularx 中的列太宽

请考虑我的最小示例。在我的 Tabularx 表中,第二列比其余列更宽。我该如何解决这个问题?

\documentclass[12pt,addpoints]{exam}
\usepackage{tabularx}
\begin{document}
\begin{table}[!ht]
    \scriptsize
    \centering
    \setlength\tabcolsep{2pt}
    \begin{tabularx}{\linewidth}{@{} |p{2cm}|X*{32}{|c}| @{}}
        \hline
        This is an example:&
        1&
        2&
        3&
        4&
        5&
        6&
        7&
        8&
        9&
        10&
        11&
        12&
        13&
        14&
        15&
        16&
        17&
        18&
        19&
        20&
        21&
        22&
        23&
        24&
        25&
        26&
        27&
        28&
        29&
        30&
        31&
        32\\\hline
    \end{tabularx}
\caption{Example}
\end{table}
\end{document}

在此处输入图片描述

相关内容