我想枚举表中的每一行,但每个单元格中的项目枚举各不相同,以自动方式显示如下:
\begin{tabular}{|c|c|c|c|c|c|}
\hline
Col 0 & Col 1 & Col 2 & Col 3 & Col 4 & Col 5\\
\hline
a) & ... & ... & ... & ... & ... \\
\hline
b) & ... & ... & ... & ... & ... \\
\hline
c) & ... & ... & ... & ... & ... \\
.
.
.
\end{tabular}
我尝试使用答案这个问题用 a) 替换\begin{enumerate}[series=table] \item \end{enumerate}
,然后恢复,但没有作用。
答案1
这是一个简单的代码:
\documentclass{article}
\usepackage{array}
\setlength{\extrarowheight}{2pt}
\newcounter{rowcount}
\begin{document}
\begin{tabular}{|>{\stepcounter{rowcount}\alph{rowcount})}c@{}*{5}{c|}}
\cline{2-6}
\multicolumn{1}{c}{} & \multicolumn{1}{|c}{Col 1 }& Col 2 & Col 3 & Col 4 & Col 5\\
\noalign{\setco
unter{rowcount}{0}} \hline
& blah & blah & blah & blah & blah \\
\hline
& ... & ... & ... & ... & ... \\
\hline
& ... & ... & ... & ... & ... \\
\hline
\end{tabular}
\bigskip
\begin{tabular}{|>{\stepcounter{rowcount}\alph{rowcount})}c@{}*{5}{c|}}
\cline{2-6}
\multicolumn{1}{c}{} & \multicolumn{1}{|c}{Col 1} & Col 2 & Col 3 & Col 4 & Col 5\\
\noalign{\setcounter{rowcount}{0}} \hline
& blah & blah & blah & blah & blah \\
\hline
& ... & ... & ... & ... & ... \\
\hline
& ... & ... & ... & ... & ... \\
\hline
\end{tabular}
\end{document}