表格中有 2 列,后面跟着 5 列(多列)

表格中有 2 列,后面跟着 5 列(多列)

我这里有个问题。我需要制作一个这样的表格。但是,这个网站上的所有问题和答案似乎都无济于事。我尝试使用他们提供的代码(以适合我的标签)进行实验,但无济于事。请问,你能帮我吗?

在此处输入图片描述

答案1

您用来\multicolum{2}{c}{...}制作横跨两列的居中单元格。

在此处输入图片描述

\documentclass{article}
\usepackage{booktabs} % provides the \toprule, \midrule and \bottomrule macros
\begin{document}
\begin{tabular}{l *{4}{c}}
\toprule
 & \multicolumn{2}{c}{\textbf{Non-taxed}} & \multicolumn{2}{c}{\textbf{Taxed}} \\ \midrule
Store type & Dec 2014 & Jun 2015 & Dec 2014 & Jun 2015 \\ \midrule
1 \\
3 \\
\bottomrule
\end{tabular}
\end{document}

答案2

以下是TorbjørnT 的回答。(主要区别在于使用几个\cmidrule指令代替一个\midrule指令。)

在此处输入图片描述

\documentclass{article} % or some other suitable document class
\usepackage{booktabs} % for well-spaced horizontal rules
\begin{document}
\begin{center}
\begin{tabular}{@{} l *{4}{c} @{}}
\toprule
& \multicolumn{2}{c}{\textbf{Non-taxed}} & \multicolumn{2}{c@{}}{\textbf{Taxed}} \\
\cmidrule(lr){2-3} \cmidrule(l){4-5}
Store type & Dec 2014 & Jun 2015 & Dec 2014 & Jun 2015 \\
\midrule
1 \\
3 \\
\bottomrule
\end{tabular}
\end{center}

\end{document}

相关内容