我在考试文档类中发现了一个奇怪的行为。我试图实现的是这样的格式:
但是当我添加一个空白行(如下面代码所示)时,我得到的格式如下:
我能改变一些东西(也许在\qformat
)来修复这个问题吗?
\documentclass[a4paper]{exam}
\begin{document}
\qformat{\thequestion \, \thequestiontitle \hfill}
\begin{questions}
\titledquestion{A question}
\begin{parts}
\part thing 1
\end{parts}
\titledquestion{Another question}
% remove the blank line below and the problem disappears
\begin{parts}
\part thing 2
\end{parts}
\end{questions}
\end{document}
答案1
如果在之前添加空白行\titledquestion{Another question}
,您将获得所需的输出。