tikzposter의 캡션에서 줄 간격을 더 작게 설정하려면 어떻게 해야 합니까?

tikzposter의 캡션에서 줄 간격을 더 작게 설정하려면 어떻게 해야 합니까?

저는 tikzposter를 사용하고 tikzfigure있으며 subcol. 캡션의 줄 간격이 엄청나게 크다는 것을 알았습니다. 더 작게 만들 수 있는 기회가 있나요?

문제의 그림

답변1

클래스 파일에서 가장 많이 저지르는 실수 중 하나는 LaTeX가 올바른 줄 간격을 적용할 수 있도록 그룹을 단락으로 끝내지 않는 것입니다. 이 문제는 향후 버전의 에서 수정될 것으로 예상됩니다 tikzposter.

tiksposterLinespace캡션

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

관련 정보