[Tex/LaTex] Adjust vertical space between question title and text in exam class

examspacing

How do I adjust the vertical space between the question titles and the text of the questions in the exam-class.

\documentclass{exam}

\qformat{\large\textbf{Question \thequestion}\hfill}

\begin{document}
\begin{questions}
    \question
    Some text
\end{questions}
\end{document}

I've tried adding some \vspace to the end of the argument of \qformat but that doesn't work. I can't figure out what controls the spacing.

Best Answer

The format provided with the qformat marco is injected in a horizontal box; that's why \vspace is not working.

To add vertical space after the question, one option is to add depth to the box, for instance with:

\qformat{
    \large\textbf{Question \thequestion}
    \hfill
    \vrule depth 1em width 0pt % Large depth to make space
} 
Related Question