I have this table that has around 10 columns and got columns headers intersect
how can I separate columns without changing the table design ( it is required to be in this design)
here is the script
\documentclass[computers,article,submit,moreauthors,pdftex]{Definitions/mdpi}
% MDPI internal commands - do not modify
\firstpage{1}
\makeatletter
\setcounter{page}{@firstpage}
\makeatother
\pubvolume{1}
\issuenum{1}
\articlenumber{0}
\pubyear{2023}
\copyrightyear{2023}
\datereceived{ }
\daterevised{ } % Comment out if no revised date
\dateaccepted{ }
\datepublished{ }
\hreflink{https://doi.org/} % If needed use \linebreak
\Title{Test}
\begin{document}
\section{Background}
This the table \ref{table_FinalDataset}
\begin{table}[H]
\caption{xxxxxxxxxxxxxxxxxxxxx.}
\label{table_FinalDataset}
\newcolumntype{C}{>{\centering\arraybackslash}X}
\begin{tabularx}{\textwidth}{CCCCCCCCCCC}
\toprule
\multirow{2}{*}{\textbf{Report ID}}
& \multicolumn{5}{c}{\textbf{Features}}
& \multicolumn{5}{c}{\textbf{Labels}} \
\cline{2-11}
& \textbf{C0004482} & \textbf{C0224473} & \textbf{C0719349}
& \textbf{C0230431} & \textbf{C0420607} & \textbf{295}
& \textbf{300} & \textbf{303} & \textbf{540}
& \textbf{560}\
\midrule
1012 &6 &0 &0 &4 &2 &0 &1 &1 &0 &0\
1013 &0 &2 &2 &8 &0 &1 &1 &0 &0 &1 \
1014 &0 &0 &4 &4 &9 &1 &0 &1 &0 &0 \
\bottomrule
\end{tabularx}
\end{table}
\end{document}


mdpi.) – Teepeemm Mar 13 '23 at 04:14Definitions/mdpi.cls. If you don't need the columns equal, then why are you making them all typeCinstead of typec? – Teepeemm Mar 13 '23 at 15:21