表格 Latex:添加线条并使标题居中

表格 Latex:添加线条并使标题居中

我是 Latex 的初学者,我想画一张桌子,但我得到了这个

在此处输入图片描述

我想添加行之间的线条,还有中心的标题并扩展单元格。

\documentclass{article}
\usepackage{multirow}
\usepackage{array}
\begin{document}
    \begin{table}
      \centering  
      \begin{tabular}{|>{\bfseries}c|*{4}{c|}}\hline
        \multirow{2}{*}{\bfseries Algorithme} &
        \multicolumn{2}{c|}{\bfseries 2-hop} \\\cline{2-5} & \textbf{node}       & \textbf{true?} \\ \hline
        R-ELM         & Normal              & No             \\ \hline
        Q-ELM         & Normal              & No             \\ \hline
      \end{tabular}
      \caption{some table}
      \end{table}
\end{document}

答案1

在此处输入图片描述

\documentclass{article} 
\usepackage{array, multirow} 

\begin{document} 
    \begin{table}
    \setlength\tabcolsep{18pt}% default value is 6pt 
    \centering 
\begin{tabular}{|>{\bfseries}c| *{2}{c|} } 
    \hline 
\multirow{2}{*}{Algorithme} & \multicolumn{2}{c|}{\textbf{2-hop}}   \\ 
    \cline{2-3}                          
                            & \textbf{node} & \textbf{true?}        \\ 
    \hline
        R-ELM               & Normal    & No                        \\ 
    \hline Q-ELM            & Normal    & No                        \\ 
    \hline 
\end{tabular} 
    \caption{some table} 
    \end{table} 
\end{document}

相关内容