这里没有以 tikzfigure 为标题的行

这里没有以 tikzfigure 为标题的行

编译以下 MWE 时,我在第 15 行收到“这里没有结束行”。MWE:

\documentclass[a0poster]{tikzposter} % See Section 3
\title{MWE}
\author{Baaboo}
\usepackage[utf8]{inputenc}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}

\begin{document}

\maketitle[titletotopverticalspace=0pt,titletoblockverticalspace=15pt,innersep=0pt] % See Section 4.1
\block{Plot}{
\begin{tikzfigure}%[Ciao]
\include{graph_MWE}
\end{tikzfigure}
}
\end{document}

其中 graph_MWE 是以下文件:

    \begin{tikzpicture}
\definecolor{steelblue31119180}{RGB}{31,119,180}

\begin{axis}[
width=25cm,
height=25cm
]
\addplot [semithick, steelblue31119180, mark=*, mark size=2, mark options={solid}, only marks]
table {%
-0.234033255900646 -1.00367625019002
};
\addlegendentry{point1}
\end{axis}
\end{tikzpicture}

奇怪的是,只有当我在 tikzfigure 环境中通过选项使用标题时才会发生此错误(尝试在“[Ciao]”前放置“%”,您不会收到任何错误),如果我在图形中包含除所包含的图形之外的其他内容,此标题会很好地工作,当在经典图形环境中的普通文档中包含时,它也恰好可以完美工作。但是,我无法在 tikzposter 中使用经典图形环境。

答案1

切勿\include在框内使用。它应该用于章节级文件包含,并且始终以 开头和结尾\clearpage\input在此处使用。

相关内容