考试类别中问题前的文字

考试类别中问题前的文字

以下示例会出现编译错误:

   \documentclass{exam}
    \begin{document}
    \begin{questions}
    \section{Section 1}
    Some descriptive text.
    \question A really interesting question.
    \section{Section 2}
    \question Another really interesting question.     
    \end{questions}
    \end{document}

但是,将“一些描述性文字”移至第一个问题之后,编译工作就可以正常工作。

我怎样才能编译它并仍然具有正确缩进的节标题和描述性文本?请注意,如果我不关心一致的节标题/文本缩进,我可以将它们移动到“\begin{questions}”之前。

这个问题相关,但不一样:如何在考试课中使用部分

答案1

您可以插入带有适当内容的框\leftskip

\documentclass{exam}
\begin{document}
\section{Section 1}
Some descriptive text
\begin{questions}
  \section{Section 1}
  \vbox{\leftskip\leftmargin Some descriptive text.}
  \question A really interesting question.
  \section{Section 2}
  \question Another really interesting question.     
\end{questions}
\end{document}

在此处输入图片描述

相关内容