So with the new version of siunitx there is this woderful command called \qty{}{}, yet in my table, I would like to have the numerical value aligned on the decimal point (the g_m coloumn).
The quick woraround would be to separate this last coloumn into two, the first ona as an S -type, only with numerical value, then the last one an usual l -type with the unit using the \unit{} command.
But I bet there is a way, tweaking some setting in the table, to make \qty{}{} work the way I need.
The thing is I'm not familiar with the IEEE format yet. And this answer about \qty just span my table in an ugly way (still using the full code, preamble and so on, from my prevoius question my prevoius question about siunitx).
\begin{table}[!th]
\renewcommand{\arraystretch}{1.3}
\caption{Parameters of Mn\textsubscript{3} and Mn\textsubscript{4}}
\label{tab:CM-1}
\sisetup{
table-alignment-mode = marker, % changed from FORMAT
table-number-alignment = center,
table-figures-integer = 1,
table-figures-decimal = 4,
}
\centering
\begin{tabular}{l*{4}{S}}
\toprule
{Transistor} & {W/L} & {W} & {L} & {g\textsubscript{m}} \\
\midrule
Mn\textsubscript{3} & \num{2.696} & \qty{8.7}{\um} & \qty{1}{\um} & \qty{200}{\micro S} \\
Mn\textsubscript{4} & \num{2.899} & \qty{2.9}{\um} & \qty{1}{\um} & \qty{66.7}{\micro S} \\
\bottomrule
\end{tabular}
\end{table}




Scolumn can do its thing with the amount part. Here I don't think it is supported forSto look inside\numor\qty. – daleif Apr 19 '23 at 08:08