表格的最后一列未垂直居中

表格的最后一列未垂直居中

我的数组最后一列有问题。它不是垂直居中的。我想尽可能少地使用包,这是我的代码和结果。

\usepackage{array}

%Some Text

\newcolumntype{L}[1]{>{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\newcolumntype{C}[1]{>{\centering\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\newcolumntype{R}[1]{>{\raggedleft\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}

%Some Text

\begin{tabular}{L{0.2\textwidth} C{0.2\textwidth} C{0.2\textwidth} C{0.2\textwidth}}
\rowcolor[HTML]{FFCB2F} 
\cellcolor[HTML]{FFCB2F}
\textbf{Pays}                       & \textbf{Volumes 2016} & \textbf{Part de marché (VP + VU)} & \textbf{Variation 2016 vs 2015 (en points)}\\[2em]
\rowcolor[HTML]{EFEFEF} 
France                              & 361 670               & 27,4 \%                           & + 0,5                                \\[1em]
Italie                              & 110 681               & 9,7 \%                            & + 0,5                                \\[1em]
\rowcolor[HTML]{EFEFEF} 
Allemagne                           & 97 671                & 5,2 \%                            & + 0,3                                \\[1em]
Espagne                             & 87 136                & 12,3 \%                           & - 0,7                                \\[1em]
\rowcolor[HTML]{EFEFEF} 
Turquie                             & 79 269                & 18,1 \%                           & + 2,4                                \\[1em]
Royaume-Uni                         & 71 967                & 4,4 \%                            & + 0,4                                \\[1em]
\rowcolor[HTML]{EFEFEF} 
Brésil                              & 69 874                & 7,3 \%                            & + 0,3                                \\[1em]
Inde                                & 61 895                & 3,8 \%                            & + 2,3                                \\[1em]
\rowcolor[HTML]{EFEFEF} 
Russie                              & 52 041                & 7,7 \%                            & + 0,4                                \\[1em]
Belgique + Luxembourg               & 51 466                & 13,5 \%                           & - 0,1                                \\[1em]
\rowcolor[HTML]{EFEFEF} 
Corée du sud                        & 46 917                & 7,1 \%                            & + 0,7                                \\[1em]
Aregntine                           & 39 491                & 12,2 \%                           & + 1,6                                \\[1em]
\rowcolor[HTML]{EFEFEF} 
Iran                                & 34 124                & 5,8 \%                            & + 4,6                                \\[1em]
Maroc                               & 31 034                & 37,0 \%                           & - 1,3                                \\[1em]
\rowcolor[HTML]{EFEFEF} 
Algérie                             & 29 132                & 41,7 \%                           & + 10,0                               \\[1em]
\end{tabular}

编辑:结果如下:

上述代码的结果

答案1

这是由于[2em]。我建议改为更改 的值,并使用和arraystretch来改进表格并简化其代码:siunitxmakecell

\documentclass[french]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{babel}
\usepackage[table]{xcolor}
\usepackage{array, makecell, siunitx}
\renewcommand\theadfont{\bfseries\normalsize}
\definecolor{webgrey}{HTML}{EFEFEF}

\begin{document}

\sisetup{table-column-width=2.8cm, output-decimal-marker={,}}
\rowcolors{2}{}{webgrey}%
\renewcommand\arraystretch{1.6}
\begin{tabular}{l@{}S[table-format=6.0]S[table-format=2.1, table-space-text-post = {\,\%}]<{\,\%}S[table-format=+1.1]}% C{0.2\textwidth}
  \rowcolor[HTML]{FFCB2F}
  \cellcolor[HTML]{FFCB2F}
  \textbf{Pays}         & {\thead{Volumes 2016}} & \multicolumn{1}{c@{}}{\thead{Part de marché &        \\ (VP + VU)}}  & {\thead{Variation\\ 2016 vs 2015\\ (en points)}}\\
  France                & 361 670                & 27,4                                         & + 0,5  \\
  Italie                & 110 681                & 9,7                                          & + 0,5  \\
  Allemagne             & 97 671                 & 5,2                                          & + 0,3  \\
  Espagne               & 87 136                 & 12,3                                         & - 0,7  \\
  Turquie               & 79 269                 & 18,1                                         & + 2,4  \\
  Royaume-Uni           & 71 967                 & 4,4                                          & + 0,4  \\
  Brésil               & 69 874                 & 7,3                                          & + 0,3  \\
  Inde                  & 61 895                 & 3,8                                          & + 2,3  \\
  Russie                & 52 041                 & 7,7                                          & + 0,4  \\
  Belgique + Luxembourg & 51 466                 & 13,5                                         & - 0,1  \\
  Corée du sud         & 46 917                 & 7,1                                          & + 0,7  \\
  Argentine             & 39 491                 & 12,2                                         & + 1,6  \\
  Iran                  & 34 124                 & 5,8                                          & + 4,6  \\
  Maroc                 & 31 034                 & 37,0                                         & - 1,3  \\
  Algérie              & 29 132                 & 41,7                                         & + 10,0
\end{tabular}

\end{document} 

如果您无权访问所有软件包,这里有一个简化版本,没有数字对齐:

\documentclass[french]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage[table]{xcolor}
\usepackage{array}
\definecolor{webgrey}{HTML}{EFEFEF}
\newcolumntype{L}[1]{>{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\newcolumntype{C}[1]{>{\centering\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
\newcolumntype{R}[1]{>{\raggedleft\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}

\begin{document}
\rowcolors{2}{}{webgrey}%
\renewcommand\arraystretch{1.6}
\begin{tabular}{l@{} C{2.8cm} C{2.8cm}<{\,\%} >{$}C{2.8cm}<{$}}%
  \rowcolor[HTML]{FFCB2F}
  \cellcolor[HTML]{FFCB2F}
  \textbf{Pays}         & \bfseries Volumes 2016 & \bfseries Part de marché \newline (VP + VU)  & \multicolumn{1}{C{2.8cm}}{\bfseries Variation\newline 2016 vs 2015\newline (en points)}\\
  France                & 361 670                & 27,4                                         & + 0,5  \\
  Italie                & 110 681                & 9,7                                          & + 0,5  \\
  Allemagne             & 97 671                 & 5,2                                          & + 0,3  \\
  Espagne               & 87 136                 & 12,3                                         & - 0,7  \\
  Turquie               & 79 269                 & 18,1                                         & + 2,4  \\
  Royaume-Uni           & 71 967                 & 4,4                                          & + 0,4  \\
  Brésil               & 69 874                 & 7,3                                          & + 0,3  \\
  Inde                  & 61 895                 & 3,8                                          & + 2,3  \\
  Russie                & 52 041                 & 7,7                                          & + 0,4  \\
  Belgique + Luxembourg & 51 466                 & 13,5                                         & - 0,1  \\
  Corée du sud         & 46 917                 & 7,1                                          & + 0,7  \\
  Argentine             & 39 491                 & 12,2                                         & + 1,6  \\
  Iran                  & 34 124                 & 5,8                                          & + 4,6  \\
  Maroc                 & 31 034                 & 37,0                                         & - 1,3  \\
  Algérie              & 29 132                 & 41,7                                         & + 10,0
\end{tabular}

\end{document} 

在此处输入图片描述

相关内容