142

I have this table, but wanted to format the first row. I like to match the two columns of first row, and last two columns of the same first row. Any suggestion on how to do that?

\begin{table}[!h] 
\caption{Comparison of percentages.}
\begin{tabular}{lclclclclc}
\hline
\hline 
Mode &  Var  &  Cum\\
\hline
{}       & EF   & CHF    & EF2   & CHF2\\
1   &  17.5 & 19.1   & 17.5  & 19.1\\
2   &  11.8 & 12.7   & 29.3  &  31.9\\
3   &  6.6  &  5.6         & 35.9    &  37.4\\
\hline
\end{tabular}
\end{table}
David Carlisle
  • 757,742
BrettHarry
  • 3,361
  • 6
  • 29
  • 23

3 Answers3

189

This can be done using \multicolumn:

\multicolumn{<no of columns>}{<column alignment>}{<content>}

As an example, with some improvements using booktabs:

\documentclass{article}
\usepackage{array}
\usepackage{booktabs}
\setlength{\heavyrulewidth}{1.5pt}
\setlength{\abovetopsep}{4pt}
\begin{document}
\begin{table}[!htbp]
\centering
\caption{Comparison of percentages.}
\begin{tabular}{*5c}
\toprule
Mode &  \multicolumn{2}{c}{Var} & \multicolumn{2}{c}{Cum}\\
\midrule
{}   & EF   & CHF    & EF2   & CHF2\\
1   &  17.5 & 19.1   & 17.5  & 19.1\\
2   &  11.8 & 12.7   & 29.3  & 31.9\\
3   &  6.6  &  5.6   & 35.9  & 37.4\\
\bottomrule
\end{tabular}
\end{table}
\end{document}

table with merged cells

tschuy
  • 3
Stefan Kottwitz
  • 231,401
47
\multicolumn{<no of columns>}{<column type>}{<stuff>}

there are a lot of examples if you search for this topic

2

An alternative solution with tabularray package:

\documentclass{article}

\usepackage{caption}

\usepackage{tabularray} \UseTblrLibrary{booktabs}

\setlength{\heavyrulewidth}{1.5pt}

\begin{document}

\begin{table}[!htbp] \centering \caption{Comparison of percentages.} \begin{tblr}{ colspec = {crrrr}, cell{1}{2,4} = {c=2}{c}, % multicolumn (column number=2, center alignment) } \hline[2pt] Mode & Var & & Cum & \ \hline[1pt] & EF & CHF & EF2 & CHF2 \ \cline{2-5} 1 & 17.5 & 19.1 & 17.5 & 19.1 \ 2 & 11.8 & 12.7 & 29.3 & 31.9 \ 3 & 6.6 & 5.6 & 35.9 & 37.4 \ \hline[2pt] \end{tblr} \end{table}

\begin{table}[!htbp] \centering \caption{Comparison of percentages.} \begin{booktabs}{ colspec = {crrrr}, cell{1}{2,4} = {c=2}{c}, % multicolumn (column number=2, center alignment) } \toprule Mode & Var & & Cum & \ \midrule & EF & CHF & EF2 & CHF2 \ \cmidrule[lr]{2-3}\cmidrule[lr]{4-5} 1 & 17.5 & 19.1 & 17.5 & 19.1 \ 2 & 11.8 & 12.7 & 29.3 & 31.9 \ 3 & 6.6 & 5.6 & 35.9 & 37.4 \ \bottomrule \end{booktabs} \end{table}

\end{document}

enter image description here

L.J.R.
  • 10,932