I've got a problem with multicolumn. I have a big table and when I use the command as below I get the following error:
Misplaced \omit. \multispan ->\omit \@multispan l.468 \end{tabular}}
I have reported below the only line in which if I delete the \multicolumn{1}{l}{\textbf{ADCS}} and replace it with only \textbf{ADCS} everything works.
I have other lines that have the same format of this one and they don't give me any mistake ( like the one below \multicolumn{1}{l}{\textbf{Payload}} & & & \textbf{5} & \textbf{20} & \textbf{1} & \textbf{6} \\ )
Do you have any idea why it does so?
\begin{table}[h!]
\resizebox{\textwidth}{!}{%
\centering \begin{tabular}{r c c c c c r}
\midrule
\multicolumn{1}{l}{\textbf{ADCS}} & & & \textbf{2.278} & \textbf{5} &
\textbf{0.114} & \textbf{2.392} \\
\midrule
\midrule
\multicolumn{1}{l}{\textbf{Payload}} & & & \textbf{5} & \textbf{20} & \textbf{1} & \textbf{6} \\
\midrule
\end{tabular}}
\caption{\label{tab:list_equipment} List of equipment}
\end{table}
Preamble:
% ==================== DOCUMENT CLASS ==================== %
\documentclass[a4paper,11pt]{report}
% ==================== PACKAGES ==================== %
\usepackage[portrait]{geometry}
\usepackage[myheadings]{fullpage}
\usepackage[T1]{fontenc}
\usepackage[utf8x]{inputenc}
\usepackage{gensymb}
\usepackage{titlesec}
\usepackage{fancyhdr}
\usepackage[page,header]{appendix}
\usepackage{lastpage}
\usepackage{changepage}
\usepackage{nccmath}
\usepackage{amsmath,amssymb}
\usepackage{numprint}
\usepackage{graphicx, wrapfig}
\usepackage{tikz}
\usepackage{subfig}
\usepackage{wrapfig}
\usepackage{lipsum}
\usepackage{longtable}
\usepackage{hyperref}
\usepackage{color}
\usepackage[font=small, labelfont=bf]{caption}
\usepackage{fourier}
\usepackage[protrusion=true, expansion=true]{microtype}
\usepackage[english]{babel}
\usepackage{sectsty}
\usepackage{url, lipsum}
\usepackage{siunitx}
\usepackage{booktabs}
\usepackage{tabularx}
\usepackage{multirow}

\documentclassand the appropriate packages that sets up the problem. While solving problems can be fun, setting them up is not. Then, those trying to help can simply cut and paste your MWE and get started on solving the problem. – samcarter_is_at_topanswers.xyz Jun 19 '18 at 09:16\resizeboxfor elements that contain text, see https://tex.stackexchange.com/q/425453/36296 – samcarter_is_at_topanswers.xyz Jun 19 '18 at 09:17