使用表格进行枚举

使用表格进行枚举

我想解释我的问题的最好方法是展示 MWE:

\documentclass{article}
\usepackage{booktabs}
\usepackage{arydshln}

\begin{document}
\section{Tab}
\begin{tabular}{  p{6cm} p{8cm} }
\hline
Title A & Text A.1 \\
\hdashline[3pt/1.5pt]
& Text A.2 \\
\hdashline[3pt/1.5pt]
& Text A.3 \\
\hdashline[3pt/1.5pt]
Title B & Text B.1 \\
\hline
%
\end{tabular}
\end{document}  

我想在标题 A 前面加上“a)”,在标题 B 前面加上“b)”,依此类推。这样每次我在第一列输入标题时,枚举都应该“继续”。我该如何强制执行此操作?

答案1

虽然同意 Zarko 的评论,但你可能想尝试

\documentclass{article}
\usepackage{booktabs}
\usepackage{arydshln}
\newcounter{mycount}\renewcommand{\themycount}{\alph{mycount}}
\newcommand{\myit}{\refstepcounter{mycount}\themycount)~}
\begin{document}
\section{Tab}
\begin{tabular}{  p{6cm} p{8cm} }
\hline
\myit Title A & Text A.1 \\
\hdashline[3pt/1.5pt]
& Text A.2 \\
\hdashline[3pt/1.5pt]
& Text A.3 \\
\hdashline[3pt/1.5pt]
\myit  Title B & Text B.1 \\
\hline
%
\end{tabular}
\end{document}

在此处输入图片描述

相关内容