paracol/exam:在列/行之间切换时如何继续对选项进行编号?

paracol/exam:在列/行之间切换时如何继续对选项进行编号?

我想让选择列表在从一列/行移动到另一列/行时继续编号,而不是将第一行的选项标记为 ,A将第二行的选项标记为B

在此处输入图片描述

\documentclass{exam}
\usepackage{paracol}

\begin{document}
        \begin{choices}
            \begin{paracol}{3}
            \switchcolumn[0]* \choice A
            \switchcolumn[1]  \choice B
            \switchcolumn[2]  \choice C
            \switchcolumn[0]* \choice D
            \switchcolumn[1]  \choice E
            \switchcolumn[2]  \choice F
        \end{paracol}
    \end{choices}
\end{document}

答案1

您可以choice使用 将计数器设置为全局计数器\globalcounter。此命令由 定义paracol,请参阅第 5.3 节本地和全局计数器在里面paracol 手册

梅威瑟:

\documentclass{exam}
\usepackage{paracol}
\globalcounter{choice}
\begin{document}
    \begin{choices}
        \begin{paracol}{3}
            \switchcolumn[0]* \choice 1
            \switchcolumn[1]  \choice 2
            \switchcolumn[2]  \choice 3
            \switchcolumn[0]* \choice 4
            \switchcolumn[1]  \choice 5
            \switchcolumn[2]  \choice 6
        \end{paracol}
    \end{choices}
\end{document}

结果:

在此处输入图片描述

相关内容