按小数点对齐表格数据

按小数点对齐表格数据

我已经尝试了大约一个半小时来使我的表格数据按小数位对齐,我开始有点失去理智了。我知道和siunitxdcolumn,但无法让它们为我的表格工作。有人能帮忙吗?谢谢!以下是我的表格代码:

\begin{table}
    \begin{center}
    \begin{tabular}{p{2.3cm}p{2.3cm}p{2.3cm}p{2.3cm}p{2.3cm}p{1.5cm}} \hline \hline
        Radius \newline ($R/R_\odot$) & Luminosity \newline ($L/L_\odot$) & Mass \newline ($M/M_\odot$) & Temperature \newline ($10^6$ K) & Density \newline (kg/m$^3$) & Pressure \newline ($P/P_c$) \\ \hline
        0.0 & 0.00 & 0.00 & 15.5   & 160000  & 1.00 \\
        0.1 & 0.42 & 0.07 & 13.0   & 90000    & 0.46 \\
        0.2 & 0.94 & 0.35 & 9.5     & 40000    & 0.15 \\
        0.3 & 0.99 & 0.64 & 6.7     & 13000    & 0.04 \\
        0.4 & 0.99 & 0.85 & 4.8     & 4000      & 0.007 \\
        0.5 & 0.99 & 0.94 & 3.4     & 1000      & 0.001 \\
        0.6 & 0.99 & 0.98 & 2.2     & 400        & 0.0003 \\
        0.7 & 0.99 & 0.99 & 1.2     & 80          & 4$\times10^{-5}$ \\
        0.8 & 0.99 & 1.00 & 0.7     & 20          & 5$\times10^{-6}$ \\
        0.9 & 0.99 & 1.00 & 0.3     & 2            & 3$\times10^{-7}$\\
        1.0 & 0.99 & 1.00 & 0.006 & 0.0003   & 4$\times10^{-13}$ \\ \hline
    \end{tabular}
    \end{center}
\end{table}

当前表格如下所示。请注意,小数点未对齐(参见“温度”列): 在此处输入图片描述

答案1

很简单,使用siunitx

\documentclass{article}
\usepackage{siunitx,booktabs}

\begin{document}

\begin{table}
\centering
\addtolength{\tabcolsep}{-0.3pt}
\begin{tabular}{
  @{}
  S[table-format=1.1]
  S[table-format=1.2]
  S[table-format=1.2]
  S[table-format=2.3]
  S[table-format=6.4,group-digits=integer,group-four-digits]
  S[table-format=1.2e-2]
  @{}
}
\toprule
{Radius} & {Luminosity} & {Mass} & {Temperature} & {Density} & {Pressure} \\
{($R/R_\odot$)} & {($L/L_\odot$)} & {($M/M_\odot$)} &
  {(\SI[parse-numbers=false]{10^6}{K})} & {(\si{kg/m^3})} & {($P/P_c$)} \\
\midrule
0.0 & 0.00 & 0.00 & 15.5  & 160000  & 1.00   \\
0.1 & 0.42 & 0.07 & 13.0  &  90000  & 0.46   \\
0.2 & 0.94 & 0.35 & 9.5   &  40000  & 0.15   \\
0.3 & 0.99 & 0.64 & 6.7   &  13000  & 0.04   \\
0.4 & 0.99 & 0.85 & 4.8   &   4000  & 0.007  \\
0.5 & 0.99 & 0.94 & 3.4   &   1000  & 0.001  \\
0.6 & 0.99 & 0.98 & 2.2   &    400  & 0.0003 \\
0.7 & 0.99 & 0.99 & 1.2   &     80  & 4e-5   \\
0.8 & 0.99 & 1.00 & 0.7   &     20  & 5e-6   \\
0.9 & 0.99 & 1.00 & 0.3   &      2  & 3e-7   \\
1.0 & 0.99 & 1.00 & 0.006 & 0.0003  & 4e-13  \\
\bottomrule
\end{tabular}

\end{table}

\end{document}

在此处输入图片描述

包含异构数据的表格总是很难排版。如果您不想要最后一列中时间符号前的空格,请将表格序言更改为

\begin{tabular}{
  @{}
  S[table-format=1.1]
  S[table-format=1.2]
  S[table-format=1.2]
  S[table-format=2.3]
  S[table-format=6.4,group-digits=integer,group-four-digits]
  S[table-format=1.0e-2,table-align-exponent=false]
  @{}
}

输出将是

在此处输入图片描述

相关内容