我收到了问题标题中提到的错误。你能帮助我吗?
\begin{table}[htb!]
\centering
\caption{\textit{Résultats global}} \label{tableau4}
\resizebox{0.5\columnwidth}{!}{%
\begin{tabular}{|c|c|c|c|c|c|}
\hline
Scénario & \multirow{2}{*}{Type d'instance} & \multicolumn{2}{c|}{MIP-5.1} & \multicolumn{2}{c|}{MIP-5.2}\\
\cline{3-6}
& Objectif & Nombre districts & Objectif & Nombre districts \\
\hline
& \multirow{2}{*}{1} &R &50 & & & \\
\cline{2-6}
&C &14 & & & \\
\hline
& \multirow{2}{*}{2} &R &50 &10 & & \\
\cline{2-6}
&C &30 & & & \\
\hline
& \multirow{2}{*}{3} &R &39 &6 & & \\
\cline{2-6}
&C &50 &7 & & \\
\hline
\end{tabular}%
}
\end{table}
答案1
你有几个放错了&
:
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[french]{babel}
\usepackage{multirow,graphicx}
\begin{document}
\begin{table}[htbp!]
\centering
\caption{\textit{Résultats global}} \label{tableau4}
\resizebox{0.5\columnwidth}{!}{%
\begin{tabular}{|c|c|c|c|c|c|}
\hline
Scénario &
\multirow{2}{*}{Type d'instance} &
\multicolumn{2}{c|}{MIP-5.1} &
\multicolumn{2}{c|}{MIP-5.2}\\
\cline{3-6}
& & Objectif & Nombre districts & Objectif & Nombre districts \\
\hline
\multirow{2}{*}{1} &R &50 & & & \\
\cline{2-6}
&C &14 & & & \\
\hline
\multirow{2}{*}{2} &R &50 &10 & & \\
\cline{2-6}
&C &30 & & & \\
\hline
\multirow{2}{*}{3} &R &39 &6 & & \\
\cline{2-6}
&C &50 &7 & & \\
\hline
\end{tabular}%
}
\end{table}
\end{document}
缩放表格通常是最后要尝试的事情。
以下是我的排版方式。
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[french]{babel}
\usepackage{booktabs,graphicx}
\begin{document}
\begin{table}[htbp!]
\centering
\caption{\textit{Résultats global}} \label{tableau4}
\begin{tabular}{@{}cccccc@{}}
\toprule
Scénario & Type d'instance & \multicolumn{2}{c}{MIP-5.1} & \multicolumn{2}{c}{MIP-5.2}\\
\cmidrule(lr){3-4}\cmidrule(l){5-6}
& & Objectif & N. districts & Objectif & N. districts \\
\midrule
1 &R &50 & & & \\
&C &14 & & & \\
\midrule
2 &R &50 &10 & & \\
&C &30 & & & \\
\midrule
3 &R &39 &6 & & \\
&C &50 &7 & & \\
\bottomrule
\end{tabular}
\end{table}
\end{document}