表内の「|」縦線を削除するにはどうすればよいですか?

表内の「|」縦線を削除するにはどうすればよいですか?

このような表を作成したい

ここに画像の説明を入力してください

でも私のは

ここに画像の説明を入力してください

作り方は次のとおりです。

\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}

ここに画像の説明を入力してください

関連情報