用文字写出考试科目中的题目数量

用文字写出考试科目中的题目数量

我正在使用考试类创建考试。为了符合标准格式,我需要能够计算问题的数量(可以使用 \numquestions 来完成)并将它们显示为单词(即 1 --> 一、2 --> 二等)。我尝试使用 fmtcount,但无法让这两个包一起工作。任何帮助都将不胜感激!以下是 MWE:

\documentclass{exam}

\begin{document}

\section*{Here are \numquestions\ questions}

\begin{questions}
    \question This is the first question.
    \question This is the second question.
\end{questions}

\end{document}

我希望章节标题中的 \numquestions 以文字(即两个)表示,而不仅仅是数字 2。

谢谢!

答案1

% arara: pdflatex

\documentclass{exam}
\usepackage{fmtcount}

\begin{document}
\section*{Here are \numberstringnum\numquestions{} questions}

\begin{questions}
    \question This is the first question.
    \question This is the second question.
\end{questions}
\end{document}

在此处输入图片描述

相关内容