如何调整表格的表头?

如何调整表格的表头?

我正在尝试在我的这些文章中使用表格。我使用了此代码表格列表

\documentclass{article}
\usepackage{tabu}
\usepackage{longtable}
 \usepackage[table]{xcolor}
 \definecolor{tableHeader}{RGB}{211, 47, 47}
\definecolor{tableLineOne}{RGB}{245, 245, 245}
\definecolor{tableLineTwo}{RGB}{224, 224, 224}

 \newcommand{\tableHeaderStyle}{
\rowfont{\leavevmode\color{white}\bfseries}
\rowcolor{tableHeader}
}


 \begin{document}
  \taburowcolors[2] 2{tableLineOne .. tableLineTwo}
  \tabulinesep = ^4mm_3mm
  \everyrow{\tabucline[.4mm  white]{}}

  \begin{tabu} to \textwidth {l >{\bfseries}X[r, 1] X[4] l}
    \tableHeaderStyle
    & Titre  & description & \\
    & \textbf{But} & Sécuriser l’accès à l’application \\

   & \textbf{Acteurs} & Tous les acteurs\\
 ....
 \end{tabu}
\end{document}

但我得到了这样的结果:

我不知道为什么标题没有调整。有人可以帮帮我吗? 在此处输入图片描述

相关内容