I'm trying to replicate siunitx
's decimal alignmnent in tables, using ctables.
\documentclass{article}
\usepackage{ctable}
\begin{document}
\ctable[] {rc} {}{
\FL \textbf{Data} & \textbf{Distance}
\ML one & 1.1
\ML ten & 10.1
\ML hundred & 100.1
\LL
}
\end{document}
which results in:
And I'm looking to get somethign that looks closer to this answer.
siunitx
? Why?tabular
to getsiunitx
to work. All the examples I had seen usedtabular
only, and a cursory search didn't give me any results. @DavidCarlisle, feel free to answer the question and I'll accept it.ctable
compared to the 'regular'tabular
code...