表格小数点附近的对齐方式

表格小数点附近的对齐方式

我在乳胶中有以下代码

{\begin{array}{c|c}
integer&real\\\hline
1&114.12382811\\
2&64.284747272\\
3&0.000267356293929\\
4&273912624.91\\
\vdots&\vdots\\
\end{array}
}

我想要形成一个带有标题和分隔线的表格,但右侧列中的数字需要在小数点上对齐,我知道这可以做到(可以在这里看到按表格列中的小数点对齐数字) 但我不确定如何将其与我想要生成的表格结合起来。提前致谢。

答案1

您可以使用 Ssiunitx下列类型:

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

\begin{document}

\[ \begin{array}{c|S[table-format =9.15, table-number-alignment=center]}
\text{integer} & {\text{real}} \\
\hline
1&114.12382811\\
2&64.284747272\\
3&0.000267356293929\\
4&273912624.91\\
\vdots&{\vdots} \\
\end{array} \]

\end{document}

在此处输入图片描述

相关内容