Я использую tikzposter и у меня есть tikzfigure
с подписью в subcol
. Я нахожу межстрочный интервал для подписи смехотворно большим. Есть ли возможность сделать его меньше ?
решение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}