如何创建以空格作为列间边框的表格

如何创建以空格作为列间边框的表格

|我可以在表格开头添加线来分隔表格中的列,就像这样\begin{tabular}{ |l|l| }

如何用空格分隔列以使其像下表中那样对齐?

在此处输入图片描述

对我有用的解决方案:

 \begin{longtable}[c]{ll@{\hspace{30pt}}ll}
 \multicolumn{2}{}{}
 \hline
 MNIST &  & CIFAR-10  & \\

 \hline
 \endfirsthead
 \hline
 \endlastfoot

 Conv.ReLU & 3 x 3 x 32 & Conv.ReLU & 3 x 3 x 96\\
 Conv.ReLU & 3 x 3 x 32 & like this\\
 Max Pooling & 2 x 2 & like this\\
 Conv.ReLU & 3 x 3 x 64 & like this\\
 Conv.ReLU & 3 x 3 x 64 & like this\\
 Max Pooling & 2 x 2 & like this\\
 Dense.ReLU & 200 & like this\\
 Dense.ReLU & 200 & like this\\
 Softmax & 10 & like this\\

 \end{longtable}

答案1

您可以根据自己的喜好调整各个列之间的间距,@{<length>}如下面的 MWE 所示:

\documentclass{article}

\begin{document}

\begin{tabular}{ll@{\hspace{20pt}}ll}
1 & 2 & 3 & 4\\
\end{tabular}

\end{document}

相关内容