試験ドキュメント クラスで奇妙な動作を発見しました。私が実現しようとしているのは、次のようなフォーマットです。
しかし、空白行を追加すると (以下のコードで示されています)、次のようなフォーマットになります。
\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}
、目的の出力が得られます。