Extraneous vertical space when typesetting clues on separate lines
Brought to you by:
neugebauer
When trying to typeset clues on separate lines, there is additional vertical space between the last two clues in a PuzzleClues section. I am a LaTeX know-nothing, so maybe it is just user error. I attach a trivial example that, when processed with pdflatex, reproduces the problem. I am using Ubuntu 20.04 with texlive 2019.
Anonymous
Diff:
The last paragraph break is triggered by the empty line after the \end{PuzzleClues}. Thus the parameters (\parskip) are applied as they are set outside the environment. The other paragraphs are set with the parameters inside the environment.
Since the two settings differ you see a difference.
To solve the problem just add an empty line before the \end{puzzles}.
Voila.
Ah. Many thanks (and thanks, too, for the package itself!).