私は tikzposter を使用しており、tikzfigure
にキャプション付きの がありますsubcol
。キャプションの行間隔が異常に広いと感じています。これを小さくすることはできますか?
答え1
クラス ファイルでよく見られる間違いの 1 つは、グループを段落で終了させないことです。これにより、LaTeX は正しい行間隔を適用できます。この問題は、の今後のバージョンで修正される予定ですtikzposter
。
\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}