使用 tikzposter 和 TexLive 2022 实现底部对齐列

使用 tikzposter 和 TexLive 2022 实现底部对齐列

脚本位于使用 tikzposter 对齐底部列! Missing number, treated as zero. \xparse function is not expandable与 TexLive 2021 配合良好。但是,自 TexLive 2022 以来,调用时脚本会引发\column{0.4}

有办法解决吗?

main.tex这是重现该问题的最低要求。

\documentclass[25pt, a0paper, portrait]{tikzposter}
\title{Tikz Poster Example}
\usetheme{Board}

\usepackage{blindtext}
\usepackage[colalign]{myposter} % from https://tex.stackexchange.com/questions/175753/bottom-aligning-columns-with-tikzposter

\begin{document}

\maketitle

\begin{columns}

    \column{0.4}
    \block{More text}{Text and more text}

    \column{0.6}
    \block{Something else}{Here, \blindtext \vspace{4cm}}

\end{columns}

\end{document}

相关内容