Como posso definir um espaço de linha menor em uma legenda no tikzposter?

Como posso definir um espaço de linha menor em uma legenda no tikzposter?

Estou usando o tikzposter e tenho um arquivo tikzfigurecom legenda, em formato subcol. Acho o espaçamento entre linhas da legenda ridiculamente grande. Existe alguma chance de eu torná-lo menor?

ilustração do problema

Responder1

Um dos erros mais cometidos em um arquivo de classe é não finalizar o grupo com um parágrafo para que o LaTeX possa aplicar o espaçamento correto entre linhas. Esperamos que isso seja corrigido nas próximas versões do tikzposter.

tiksposterLinespaceCaption

\documentclass{tikzposter}
\usepackage{lmodern}
\usepackage{blindtext}
\begin{document}
\begin{columns}
    \column{.32}
\block{Walzing Wombat}{%
    \begin{tikzfigure}[\normalsize this is to test the
        spacing within the caption and we need quite a
    lot of words here just to see some minimal result,
exhausting]
        \rule{5cm}{2cm}
    \end{tikzfigure}
    Wombats love the walz, ducks dance dixie
}
\column{.32}
\block{lurking lizard}{%
    \begin{tikzfigure}[\normalsize this is to test the
        spacing within the caption and we need quite a
    lot of words here just to see some minimal result,
exhausting\par]
        \rule{5cm}{2cm}
    \end{tikzfigure}
    sassy salamandar
}
\end{columns}
\end{document}

informação relacionada