alterqcm 包:有没有办法个性化枚举?

alterqcm 包:有没有办法个性化枚举?

有没有办法在 alterqcm 包中个性化枚举?我在文档中找不到合适的选项。MWE:

\documentclass{scrartcl}

\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{alterqcm}
\usepackage{amssymb}

\begin{document}
  \begin{alterqcm}[lq=100mm,language=english,numstyle=\alph] 
 \AQquestion{Question1}{% 
 {A},
 {B}}  
\AQquestion{Question 2}{% 
 {A},
 {B}} 
\end{alterqcm}
\end{document}

我想将问题列 (a., b.) 中的枚举替换为 a.) 和 b.)。

是否有一些技巧可以扩展枚举选项?如果能包含枚举包的灵活性就太好了。更确切地说, 在此处输入图片描述

我想拥有 在此处输入图片描述

答案1

糟糕的解决方案

\documentclass{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{alterqcm}

\makeatletter
\renewcommand{\AQquestion}[3][]{%
\setkeys[AQ]{local}{#1}%
\stepcounter{AQ@numquestion}% 
\setcounter{AQ@numprop}{0} % v0.93
\setcounter{aq@numb}{0}%
\@for\liste:=#3\do{%
\stepcounter{aq@numb}%
\begingroup
\ifnum\aqlocall@ng=3 \nogreekalph\fi
\global\expandafter\let\csname aq@arg\alph{aq@numb}\endcsname\liste
\endgroup}%
\ifAQ@global@alea\ifAQ@global@VF
\else
\aq@n@arg=0 %
\loop\ifnum\aq@n@arg<\value{aq@numb}\aq@melange\advance\aq@n@arg by1\repeat\fi
\fi
\aq@adjust{#2}%
\multirow{1}{\cmdAQ@global@lq}[\cmdAQ@local@pq]{%
\ifAQ@global@num\aq@style@numquest{\cmdAQ@global@numstyle{AQ@numquestion}.)}%    
% the change is in the line above 
\hspace{3pt}\fi
\ifAQ@global@transparent%
\hrule height0pt depth0pt width\aq@wdquest%
\else
#2\vss
\fi
 }%
&\setkeys[AQ]{local}{#1}%
      \aq@prop{\aq@arga}{1}\\%
      \ifAQ@global@sep\cline{2-2}\fi
&\setkeys[AQ]{local}{#1}%
      \aq@prop{\aq@argb}{2}\\
      \ifAQ@global@sep\cline{2-2}\fi
      \ifnum\value{aq@numb}=2\hline\else\ifAQ@global@sep\cline{2-2}\fi
&\setkeys[AQ]{local}{#1}%
      \aq@prop{\aq@argc}{3}\\
      \ifnum\value{aq@numb}=3\hline\else\ifAQ@global@sep\cline{2-2}\fi
&\setkeys[AQ]{local}{#1}%
      \aq@prop{\aq@argd}{4}\\
      \ifnum\value{aq@numb}=4\hline\else\ifAQ@global@sep\cline{2-2}\fi
&\setkeys[AQ]{local}{#1}%
     \aq@prop{\aq@arge}{5}\\
\hline\fi\fi\fi}%

\makeatother
\begin{document}
  \begin{alterqcm}[lq=100mm,language=english,numstyle=\alph] 
 \AQquestion{Question1}{% 
 {A},
 {B}}  
\AQquestion{Question 2}{% 
 {A},
 {B}} 
\end{alterqcm}
\end{document}

在此处输入图片描述

相关内容