考虑以下示例:
\newcounter{cnt}
\setcounter{cnt}{3}
\begin{tabular}{l|l|l|}
\cline{2-3}
a & b & c
\end{tabular}
我有一个可以生成具有可变列数的表格的包。我想使用该cline
命令绘制一条不包括第一个单元格的水平线
细胞数量存储在计数器中(例如计数器控制数在示例中)。我有什么办法可以在 cline 参数中使用计数器的内容吗?
答案1
使用\thecnt
。
\documentclass{article}
\newcounter{cnt}
\setcounter{cnt}{3}
\begin{document}
\begin{tabular}{l|l|l|}
\cline{2-\thecnt}
a & b & c
\end{tabular}
\end{document}