赞
踩
\documentclass{article}
\begin{document}
\begin{tabular}{|c|c|}
\hline
列1 & 列2 \\
\hline
\multicolumn{1}{|c|}{内容1} & 内容2 \\
\hline
\end{tabular}
\end{document}
注:在这个例子中,通过 \multicolumn{1}{|c|}{内容1}
来给表格中的第一格加上左右两侧的竖直边框。
\documentclass{article}
\begin{document}
\begin{tabular}{|c|c|}
\hline
列1 & 列2 \\
\hline
\multicolumn{1}{c@{}}{内容1} & 内容2 \\
\hline
\end{tabular}
\end{document}
注:在这个例子中,通过 \multicolumn{1}{c@{}}{内容1}
来给表格中的第一格去掉左侧边框。通过在 @{}
中放入空白,可以实现去掉边框的效果。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。