For this MWE, how to make D_M virtually have the same width of K_{emf} in order to be left-aligned with K_{emf} while keeping both centered with respect to the column margins?
Generally speaking, how to do it for any number of rows (below the header) without having to manually detect the widest entry of the respective column?
\documentclass{article}
\usepackage{siunitx,ragged2e,booktabs,lipsum}
\begin{document}
\tabcolsep0pt
\begin{tabular}{
>{\Centering}m{0.2\linewidth}
}
\toprule
Symbol\\
\midrule
$D_M$\\
$K_{emf}$\\
\bottomrule
\end{tabular}
\end{document}





mcolumn used in my question, this>{\hspace{2ex}\RaggedRight}m{0.2\linewidth}<{\hspace{2ex}}doesn't work. May I know why? – Diaa Dec 11 '20 at 11:02tabularx, does this, for example,>{\hspace{2ex}\RaggedRight\hsize=1.6\hsize\linewidth=\hsize}X<{\hspace{2ex}}mean that an additional space of2exwill be added to the column width after it is calculated by\hsize? Or it will behave likemcolumn of explicit width as you explained earlier! – Diaa Dec 11 '20 at 23:31\mathitor leaving it as I did? Visually speaking, I think both look the same for me. – Diaa Dec 12 '20 at 10:29\mathitselects the text italic font, for use in math so is a font with spacing designed for words. the default font is math italic which is a completely different font with slightly different letter shapes and very different inter-letter spacing. Compare$diff$and$\mathit{diff}$– David Carlisle Dec 12 '20 at 11:02