突出显示的单元格不再对齐

突出显示的单元格不再对齐

单元格 421 和 237(在此示例中)在以任何方式(粗体、彩色等)突出显示时不会对齐。我只在必要时使用 S 列。这是一个小例子:

\documentclass{report} 
\usepackage{tabu, longtable}


\begin{document}


\begin{longtabu} to \textwidth {X[2, l]X[c]X[c]X[c]X[c]S[table-format=4]X[c]}
                    & \multicolumn{2}{c}{\textbf{column1}} & \multicolumn{4}{c}{\textbf{column2}} \\
                    & a & b                                & c & d & e & f \\
    \textbf{round1} & 2.876 & 22                           & 5.837 & 2.433 & \textbf{421} & 5.235 \\
           &        &       &                              & 6.564 & 4.434 & 237 & 1.345 \\

\end{longtabu}


\end{document}

答案1

缺少包。在第二行siunitx的 周围添加大括号,添加到 的设置并使用edetect-weightS

\protected\bfseries 421

对齐粗体421

\documentclass{report} 
\usepackage{tabu, longtable}
\usepackage{siunitx}
\begin{document}
\begin{longtabu} to \textwidth {X[2, l]X[c]X[c]X[c]X[c]S[table-format=4,detect-weight]X[c]}
                    & \multicolumn{2}{c}{\textbf{column1}} & \multicolumn{4}{c}{\textbf{column2}} \\
                    & a & b                                & c & d & {e} & f \\
    \textbf{round1} & 2.876 & 22                           & 5.837 & 2.433 & \protected\bfseries 421 & 5.235 \\
                    &       &                              & 6.564 & 4.434 & 237 & 1.345 \\
\end{longtabu}
\end{document}

在此处输入图片描述


不幸的是,似乎在带有的列\color中不起作用。但您可以使用:Stabu\tablenum

\multicolumn{1}{c}{\tablenum[table-format=4,color=orange]{421}}

在此处输入图片描述

代码:

\documentclass{report} 
\usepackage{tabu, longtable}
\usepackage{siunitx}
\usepackage[table]{xcolor}
\begin{document}
\begin{longtabu} to \textwidth {X[2, l]X[c]X[c]X[c]X[c]S[table-format=4,detect-weight]X[c]}
                    & \multicolumn{2}{c}{\textbf{column1}} & \multicolumn{4}{c}{\textbf{column2}} \\
                    & a & b                                & c & d & {e} & f \\
    \textbf{round1} & 2.876 & 22                           & 5.837 & 2.433 & \multicolumn{1}{c}{\tablenum[table-format=4,color=orange]{421}} & 5.235 \\
                    &       &                              & 6.564 & 4.434 & 237 & 1.345 \\
\end{longtabu}
\end{document}

或者

\multicolumn{1}{>{\cellcolor{gray}}c}{\tablenum[table-format=4,color=orange]{421}}

在此处输入图片描述


\documentclass{report} 
\usepackage{tabu, longtable}
\usepackage{siunitx}
\usepackage[table]{xcolor}
\newcommand\specSc{}
\def\specSc#1[#2]#3{%
  \multicolumn{1}{>{#1}c}{\tablenum[#2]{#3}}%
}
\begin{document}

\begin{longtabu} to .5\textwidth {X[l]S[table-format=4.1]S[table-format=1.3,detect-weight]}
& {e} & {f} \\
\textbf{round1}
  & \specSc{\bfseries}[table-format=4.1,detect-weight]{421.3} 
  & 5.235 \\
& \specSc{\color{orange}}[table-format=4.1]{237}
  & \specSc{}[table-format=1.3,color=purple]{1.34} \\
& \specSc{\cellcolor{lightgray}}[table-format=4.1,color=blue]{237.2}
  & \protected\bfseries 1.342 \\
\end{longtabu}
\end{document}

在此处输入图片描述

相关内容