TikZPoster 中的 TikZ 矩阵

TikZPoster 中的 TikZ 矩阵

在 TikZPoster 中使用 TikZ 矩阵不起作用。

以下是 MWE:

\documentclass{tikzposter}
\usetikzlibrary{matrix}

\begin{document}
\block{Some title}{
    \begin{tikzpicture}
        \matrix [matrix of nodes] {
            A & B \\
        };
    \end{tikzpicture}
}
\end{document}

它给出了错误

! Undefined control sequence.
<argument> \pgf@matrix@last@nextcell@options 

有什么解决方法的建议吗?

答案1

您必须使用ampersand replacement=\&作为参数tikzpicture并将所有内容替换&\&

平均能量损失

\documentclass{tikzposter}
\usetikzlibrary{matrix}

\begin{document}
\block{Some title}{%
    \begin{tikzpicture}[ampersand replacement=\&]
        \matrix [matrix of nodes] {
            A \& B \\
        };
    \end{tikzpicture}
}
\end{document} 

输出

在此处输入图片描述

相关内容