Encontré un comportamiento extraño en la clase de documentos del examen. Lo que estoy tratando de lograr es formatear así:
Pero cuando agrego una línea en blanco (indicada en el código siguiente), obtengo un formato como este:
¿Hay algo que pueda cambiar (tal vez en \qformat
) para solucionar este comportamiento?
\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}
Respuesta1
Si agrega la línea en blanco antes \titledquestion{Another question}
, tendrá el resultado deseado.