创建表时出错

创建表时出错

我想要创建这个表: 在此处输入图片描述

我的代码是

\documentclass{article}
\usepackage{multirow}
    \begin{document}
    \begin{table}[H]
                \caption{Aceptaciones a usuarios intrusos} 
                \begin{center} % tabla centrada en el texto
                    \begin{tabular}{|c|c|c|c|c|c|}%l -> left, c -> center, r -> right       
                    \hline  
                    \multicolumn{6}{|c|}{\textbf{Hiperparametros}}\\ \hline
    \multicolumn{2}{|l|}{SVM} & {ANN} \\ \hline
    \hline
    \multicolumn{4}{|l|}{SVM} & {ANN} & {SVM} & {ANN} \\ \hline

                    \end{tabular}
                \label{tablaResultadosIntrusos}
             % label: etiqueta tabla, sirve para ref. cruzadas, ver video: 
             % https://www.youtube.com/watch?v=ldU2mEWAeh4

                \end{center}
            \end{table}  
\end{document}  

答案1

您的手绘草图显示了四列布局,而您的代码片段指示布局有六列甚至七列。以下代码采用四列,即采用手绘布局。

在此处输入图片描述

\documentclass{article}
\usepackage{float} % for 'H' float positioning parameter
\usepackage{array} % for '\extrarowheight' macro
\begin{document}
    \begin{table}[H]
    \setlength\extrarowheight{2pt} % optional -- for a more open "look"
    \caption{Aceptaciones a usuarios intrusos} 
    \label{tablaResultadosIntrusos}
    \centering
    \begin{tabular}{|*{4}{c|}}      
    \hline  
    \multicolumn{4}{|c|}{\textbf{Hiperparametros}}\\ 
    \hline
    \multicolumn{2}{|c|}{SVM} & \multicolumn{2}{c|}{ANN} \\ 
    \hline
    SVM & ANN & SVM & ANN \\ 
    \hline
    \end{tabular}
    \end{table}  
\end{document}  

相关内容