tikzposter のキャプションの行間を狭く設定するにはどうすればいいですか?

tikzposter のキャプションの行間を狭く設定するにはどうすればいいですか?

私は tikzposter を使用しており、tikzfigureにキャプション付きの がありますsubcol。キャプションの行間隔が異常に広いと感じています。これを小さくすることはできますか?

問題の例

答え1

クラス ファイルでよく見られる間違いの 1 つは、グループを段落で終了させないことです。これにより、LaTeX は正しい行間隔を適用できます。この問題は、の今後のバージョンで修正される予定ですtikzposter

tiksposter行間キャプション

\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}

関連情報