我想只对表格中的部分行进行注释。有没有办法实现带有额外列用于注释且水平线不会超出范围的表格?
工作示例:
\documentclass{article}
\begin{document}
\begin{tabular}{|c|c|c|l}
\hline
1 & 2 & 3 &\\
\hline
1 & 2 & 3 & 4 \textit{Here is a comment!!!}\\
\hline
\end{tabular}
\end{document}
在这个例子中,我希望“4”单元格没有任何水平线。
有人可以帮忙吗?
感谢 David,问题解决了。解决方案很简单,
使用 \cline{1-3} 而不是 \hline
\cline{1-3} 正在做这项工作。
\documentclass{article}
\begin{document}
\begin{tabular}{|c|c|c|l}
\cline{1-3}
1 & 2 & 3 &\\
\cline{1-3}
1 & 2 & 3 & 4 \textit{Here is a comment!!!}\\
\cline{1-3}
\end{tabular}
\end{document}
答案1
你可以\cline{1-3}
使用 \hline