带有 siunitx 的表格 - 精度模式下的对齐

带有 siunitx 的表格 - 精度模式下的对齐

在此处输入图片描述

在一个测试在制作表格时,我使用 cool 包siunitx对逗号后的值进行一些定义的精度,并对齐这些值在中间一列,但不幸的是,它正在对文本进行一些对齐Val 2,其余部分$\beta$保持不变。这个数字是否2被视为 siunitx 的值,即使之前的文本像 2.00 一样?或者我必须为第一行创建一个单独的表格(Val 1 ... Val 3) - 不确定...

这是我的代码:

\documentclass[11pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{frcursive}
\usepackage{amsmath}


% le package qui pemet de définir des unités et leur affichage
\usepackage{siunitx} % Required : alignement des valeurs etc.
\sisetup{
    round-mode          = places, % Rounds numbers
    round-precision     = 2, % to 2 places
}

\begin{document}

%exemples de tableau
\noindent\begin{cursive}Des tableaux:\end{cursive}
\begin{table}[h!]
    \begin{center}

    \label{tab:table1}
        
        \begin{tabular}{l|c|r} % Alignements: left, center, right
            \textbf{Val 1} & \textbf{Val 2} & \textbf{Val 3}\\
            $\alpha$ & $\beta$ & $\gamma$ \\
            \hline
            1 & 1110.1 & a\\
            2 & 10.1 & b\\
            3 & 23.113231 & c\\
        \end{tabular}
    \caption{Valeurs basiques}

\vspace{1cm}    

    \label{tab:table2}
    
    \begin{tabular}{l|S|r} % c devient S ==> unitsx
        \textbf{Val 1} & \textbf{Val 2} & \textbf{Val 3}\\
        $\alpha$ & $\beta$ & $\gamma$ \\
        \hline
        1 & 1110.1 & a\\
        2 & 10.1 & b\\
        3 & 23.113231 & c\\
    \end{tabular}
  \caption{Valeurs alignées et arrondies}
  
    \end{center}
  \end{table}


\end{document}

答案1

  • 您需要定义table-format要在表格中显示的小数位数,以适应您的情况table-format=4.2
  • 列标题不是数字,应位于文本中央,并应使用花括号括起来
  • 表格的标签必须位于标题之后
\documentclass[11pt,a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage{frcursive}
\usepackage{amsmath}
% le package qui pemet de définir des unités et leur affichage
\usepackage{siunitx} % Required : alignement des valeurs etc.
\sisetup{   % this is now globally set, you ma consider to move it inside table
    round-mode      = places, % Rounds numbers
    round-precision = 2, % to 2 places
}

\begin{document}
%exemples de tableau
\noindent\begin{cursive}Des tableaux:\end{cursive}
    \begin{table}[h!]
\centering
    \begin{tabular}{l|c|r} % Alignements: left, center, right
\textbf{Val 1} & \textbf{Val 2} & \textbf{Val 3}\\
$\alpha$ & $\beta$ & $\gamma$ \\
    \hline
1 & 1110.1      & a\\
2 & 10.1        & b\\
3 & 23.113231   & c\\
    \hline
    \end{tabular}
\caption{Valeurs basiques}
\label{tab:table1}
   
\vspace{2\baselineskip}
    \begin{tabular}{l|S[table-format=4.2]|r}             % <---
\textbf{Val 1}  & {\textbf{Val 2}} & \textbf{Val 3}  \\  % <---
$\alpha$}       & {$\beta$}        & $\gamma$        \\  % <---
    \hline
1 & 1110.1      & a\\
2 & 10.1        & b\\
3 & 23.113231   & c\\
    \hline
    \end{tabular}
\caption{Valeurs alignées et arrondies}
\label{tab:table2}
  \end{table}
\end{document}

在此处输入图片描述

相关内容