LaTeX: Tables and Columns and Units, oh my

  • Topic: LaTeX 
  • Thread starter Thread starter NeoDevin
  • Start date Start date
  • Tags Tags
    Columns Latex Units
Join the discussion
Registration is free. Start your own thread to ask a follow-up.
1 reply · 3K views
NeoDevin
Messages
334
Reaction score
2
I'm trying to make a table in LaTeX in which all the entries of a column have the same units, without having to type them for each column. (Before you say it, yes, I know I could just put the units in the column heading, but I don't want to).

I tried:
Code:
\documentclass{article}
\usepackage{siunitx}
\begin{document}
\begin{center}\begin{tabular}{|>{\SI\bgroup}c<{\egroup{\centi m}}|c|c|c|}\hline
0.1 & 0.2 & 0.3 & 0.4 \\ \hline
0.5 & 0.6 & 0.7 & 0.8 \\ \hline
\end{tabular}\end{center}
\end{document}

Which gives:
Code:
! Package siunitx Error: Invalid character `\bgroup ' in numerical input.

Any suggestions?
Thanks in advance.
 
Physics news on Phys.org
Figured it out.

If anyone else is interested
Code:
\documentclass{article}
\usepackage{siunitx}
\begin{document}
\begin{center}\begin{tabular}{|S<{\, \si{\centi m}}|c|c|c|}\hline
0.1 & 0.2 & 0.3 & 0.4 \\ \hline
0.5 & 0.6 & 0.7 & 0.8 \\ \hline
\end{tabular}\end{center}
\end{document}
Works as long as the numbers are all the same length.