如何删除表格中的一些“|”垂直线?

如何删除表格中的一些“|”垂直线?

我想创建一个这样的表格

在此处输入图片描述

但我的是

在此处输入图片描述

以下是我的做法:

\begin{tabular}{|c|l|l|l|l|l|}
\hline
\textit{Text} & ``Tom & Spink & has & a & harpoon.''\\
\hline
\hline
\textit{Transcription 1} & L+H* & L+H* & & & \! H* \\ & & & & & L-L\% \\
\hline
\textit{Transcription 2} & L* & L* & & & L*\\
 & H- & L- & & & L-L\%\\
 \hline

\end{tabular}

请帮忙。

答案1

您只需要|在列之间省略列规范,您不喜欢那里有垂直线:

\documentclass{article} 
\usepackage{array} 

\begin{document}
\begin{tabular}{|>{\itshape}c | l l l l l|}  % <---
    \hline
Text            & ``Tom & Spink & has   & a & harpoon.''\\
    \hline
    \hline
Transcription 1 & L+H*  & L+H*  &       &   & !H*       \\ 
                &       &       &       &   & L-L\%     \\
    \hline
Transcription 2 & L*    & L*    &       &   & L*        \\
                & H-    & L-    &       &   & L-L\%     \\
    \hline
\end{tabular}
\end{document}

在此处输入图片描述

相关内容