改变表列的大小(tabularx)

改变表列的大小(tabularx)

如何更改下表中的所有列?我希望第二列不具有比率 1。

\begin{table}[H] 
 \caption{}
    \setlength\tabcolsep{3pt}
    \small
\begin{tabularx}{\linewidth}{@{} 
                 >{\hsize=0.6\hsize}O{L} %  0.8
                                    O{L} %  1.0
                 >{\hsize=1.4\hsize}O{L} %  1.2
                                       l
                             @{}}
    \toprule
\textbf{A}
    &   \textbf{B}
        &   \textbf{C}\\
        \toprule
Some text
    & Some text   
        & Some text\\
    \bottomrule

\end{tabularx}
    \end{table}

相关内容