
이런 테이블을 만들고 싶다
하지만 내 것은
내가 만드는 방법은 다음과 같습니다.
\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}