Encontrei um comportamento estranho na classe de documentos do exame. O que estou tentando alcançar é uma formatação assim:
Mas quando adiciono uma linha em branco (indicada no código abaixo), obtenho uma formatação assim:
Há algo que eu possa mudar (talvez em \qformat
) para corrigir esse comportamento?
\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}
Responder1
Se você adicionar a linha em branco antes \titledquestion{Another question}
, terá a saída desejada.