私は LaTeX でこのコードを使用して表を作成します:
\begin{center}
\begin{longtable}{|c|p{0.08\linewidth}|p{0.08\linewidth}|}
\hline
\multirow{3}{*}{Text O}
& \multicolumn{2}{c|}{\multirow{2}{*}{Text S}}\\
&&\\
\cline{2-3}
&P&P\\ \hline
1&2&3\\ \hline
4&5&6\\ \hline
\end{longtable}
\end{center}
列 2 と 3 の間の縦線 (テキスト S セルの縦線) を消去するにはどうすればよいですか?
ありがとう :)
答え1
書式を修正する方法の1つは、行を置き換えることです。
&&\\
と
& \multicolumn{2}{c|}{} \\
&
つまり、2 番目のシンボルを に置き換えます\multicolumn{2}{c|}{}
。
完全な最小限の動作例ムウェは、(a) 不要で逆効果なラッパーを取り除きcenter
、(b) 指示を使用して\endhead
資料\endlastfoot
に何らかの構造を与えますlongtable
。
\documentclass{article} % or some other suitable document class
\usepackage{longtable,multirow}
\begin{document}
\begin{longtable}{ | c | *{2}{p{0.08\linewidth}|} }
% table header
\hline
\multirow{3}{*}{Text O}
& \multicolumn{2}{c|}{\multirow{2}{*}{Text S}} \\
& \multicolumn{2}{c|}{} \\ \cline{2-3}
& P & P \\ \hline
\endhead
\hline
\endlastfoot
% body of table
1 & 2 & 3 \\ \hline
4 & 5 & 6 \\
\end{longtable}
\end{document}