我如何从乳胶表中删除这些行?

我如何从乳胶表中删除这些行?

在此处输入图片描述

我如何从乳胶表中删除这些行?

\begin{center}
\setlength{\tabcolsep}{50pt}
\renewcommand{\arraystretch}{2}
\begin{tabular}{ c |c|c|c| }
       & cell2 & cell3 & cell11\\ 
 \hline
 cell4 & cell5 & cell6 & cell\\ 
 \hline
 cell7 & cell8 & cell9 & cell\\ 
 \hline
\end{tabular}
\end{center}

答案1

在此处输入图片描述

\documentclass{article}

\begin{document}
\setlength{\tabcolsep}{10pt}
\renewcommand{\arraystretch}{2}
\begin{tabular}{c|c|c|c|}
    \multicolumn{1}{c}{} & \multicolumn{1}{c}{cell2} & \multicolumn{1}{c}{cell3} & \multicolumn{1}{c}{cell11} \\ 
    \cline{2-4}
    cell4 & cell5 & cell6 & cell \\ 
    \cline{2-4}
    cell7 & cell8 & cell9 & cell \\ 
    \cline{2-4}
\end{tabular}
\end{document}

答案2

除了 remove 之外|,你还必须看一下booktabs手册,它旨在制作优雅的表格,并尽量减少水平线。请注意,没有空白行也会增加一些空间,因此 set\arraystretch不是必须的:

姆韦

\documentclass{article}
\usepackage{booktabs}
\begin{document}
\setlength{\tabcolsep}{10pt}
\begin{tabular}{cccc}\toprule
         &  cell2 &  cell3 &  cell11 \\\cmidrule{2-4}
  cell4  & cell5  &  cell6 &  cell \\\addlinespace 
  cell7 & cell8  &  cell9 &  cell \\\bottomrule 
\end{tabular}
\end{document}

答案3

{cccc} 中不带 |

\begin{table}
\begin{tabular}{cccc} 
{}&0&0&0 \\ 
\hline
0&0&0&0 \\ 
\hline
0&0&0&0 \\ 
\hline
\end{tabular}
\end{table}

在此处输入图片描述

{c|c|c|c|} 中的 |

\begin{table}
\begin{tabular}{c|c|c|c|} 
{}&0&0&0 \\ 
\hline
0&0&0&0 \\ 
\hline
0&0&0&0 \\ 
\hline
\end{tabular}
\end{table}

在此处输入图片描述

{c|c|c|c|} 中包含 | 但没有 hline

\begin{table}
\begin{tabular}{c|c|c|c|} 
{}&0&0&0 \\ 
0&0&0&0 \\ 
0&0&0&0 \\ 
\end{tabular}
\end{table}

在此处输入图片描述

答案4

使用(但是,我更喜欢{NiceTabular}采用符合以下精神的nicematrix表格格式:参见 F​​ran 的回答)。booktabsbooktabs

\documentclass{article}

\usepackage{nicematrix}

\begin{document}

\begin{center}
\renewcommand{\arraystretch}{2}
\begin{NiceTabular}{ccc}[first-col,first-row,hvlines]
       & cell2 & cell3 & cell11\\ 
 cell4 & cell5 & cell6 & cell\\ 
 cell7 & cell8 & cell9 & cell\\ 
\end{NiceTabular}
\end{center}

\end{document}

您需要多次编译(因为nicematrix在后台使用 PGF/Tikz 节点)。

上述代码的输出

相关内容