How can I alter all columns in the following table? I want the second column not to have ratio 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}
O(orO{L}) column type defined? – Mico Nov 19 '20 at 14:26Ois defined as:\usepackage[column=O]{cellspace} \setlength\cellspacetoplimit{2pt} \setlength\cellspacebottomlimit{2pt} \addparagraphcolumntypes{L}and is explained in details how to deal with column widths. Unfortunately it is not clear to me, why this not work for OP. My answer perfectly work. – Zarko Nov 19 '20 at 16:03