空白行導致考試類別出現縮排問題

空白行導致考試類別出現縮排問題

我在考試文件類別中發現了一個奇怪的行為。我想要實現的格式是這樣的:

目標

但是當我添加一個空白行(如下面的程式碼所示)時,我得到的格式如下: 在此輸入影像描述

我可以改變一些東西(也許在\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},您將獲得所需的輸出。

相關內容