tikzposter \item 错误与 \include

tikzposter \item 错误与 \include

Something's wrong--perhaps a missing \item.在包含带有 s 的源时出现错误item

这是一个非常简单的复现方法,

主文本

\documentclass[11pt,a0paper]{tikzposter}
\begin{document}
\begin{columns}

\column{0.5}
\block{A test!}{
  asddd
  \include{sensitivity}
}

\column{0.5}
\block{A test!}{
 asd
}

\end{columns}
\end{document}

敏感度.tex

\begin{itemize}
\item sdf
\item dsf
\end{itemize}

请问有什么建议吗?

答案1

\include\block是为“章节级”包含而设计的,并在包含的代码的开始和结束处包含强制分页符,它不能在诸如或甚至之类的框内工作\column\input是您在此处想要的命令。

相关内容