I am using Longtable. For the following MWE, how can I make the third vertical line and the second horizontal line thicker than the other lines?
\documentclass[12pt, twoside]{article}
\usepackage{longtable}
\begin{document}
\begin{longtable}[c]{|l|c|c|c|}
\hline
& Col 2 & Col 3 & Col 4 \\ \hline
\endfirsthead
Row 2 & a & b & c \\ \hline
Row 3 & x & y & z \\ \hline
\end{longtable}
\end{document}
Instead of
longtable
, I suggest thetabularray
package:(For more details on how to do longtables with tabularray, see chapter 4 of the package documentation)