在哪里可以设置 \arrayrulewidth

在哪里可以设置 \arrayrulewidth

我希望能够更改每个单元格或至少每行的单元格边框宽度。可以通过更改 \arrayrulewidth 来实现。但是,如果我在表格行的开头执行此操作,则会出错。

从...开始:

\documentclass[]{article}

\usepackage{hhline}
\begin{document}


\begin{table}[h]
\begin{centering}

\begin{tabular}{|p{0.25\textwidth} p{0.25\textwidth}}
one & two \tabularnewline
three & \multicolumn{1}{|p{0.25\textwidth}|}{four} \tabularnewline
\end{tabular}
\par\end{centering}
\end{table}

\end{document}

放置 在哪里是合法的\setlength{\arrayrulewidth}{2pt},以便改变特定边框的宽度 - 比如说单元格四周围的边框?我需要任何\global或类似的吗?

相关内容