使用 \multirow 时仍存在水平线?

使用 \multirow 时仍存在水平线?

我对 TeX 还很陌生,到目前为止只制作了两个beamer文档。现在我正在用 TeX 写我的第一篇学期论文。

我想要实现的是 的简单使用\multirow。然而,尽管我一步一步按照说明进行操作,但一些剩余的水平线仍然困扰着我。

我相信代码示例不言而喻:

\usepackage{multirow}
\begin{document}
\begin{tabular}{|c|c|}
\hline
\textbf{Biotoptyp: Abk"urzung} & \textbf{Fl"ache 2011, in m$^2$, ca.} \\ \hline
HN                & \multirow{4}{*}{15.800} \\ \hline
BRS               &                         \\ \hline
BMS               &                         \\ \hline
HB                &                         \\ \hline
UHT               & \multirow{2}{*}{8.200}  \\ \hline
GMK               &                         \\ \hline
UHM               & 4.000                   \\ \hline
SXA               & 2.500                   \\ \hline
HFS               & 1.100                   \\ \hline
\textbf{$\Sigma$} & \textbf{31.600}         \\ \hline
\end{tabular}
\end{document}

在此处输入图片描述

我在这里遗漏了什么?

答案1

您可以尝试以下操作:

\documentclass{article}
\usepackage{multirow}
\begin{document}
\begin{tabular}{|c|c|}
\hline
\textbf{Biotoptyp: Abk"urzung} & \textbf{Fl"ache 2011, in m$^2$, ca.} \\ \hline
HN                & \multirow{4}{*}{15.800} \\ \hline
BRS               &                         \\ \cline{1-1}
BMS               &                         \\ \hline
HB                &                         \\ \hline
UHT               & \multirow{2}{*}{8.200}  \\ \cline{1-1}
GMK               &                         \\ \hline
UHM               & 4.000                   \\ \hline
SXA               & 2.500                   \\ \hline
HFS               & 1.100                   \\ \hline
\textbf{$\Sigma$} & \textbf{31.600}         \\ \hline
\end{tabular}
\end{document}

此代码产生:

在此处输入图片描述

PD:\cline{i-j}表示该线从一列延伸i到另一列j

相关内容