如何在 tikzposter 中插入带有标签和标题的图形?

如何在 tikzposter 中插入带有标签和标题的图形?

我正在用标准蒂克兹海报模板。

由于某些原因,下面给出的标准乳胶格式不起作用。

    \begin{figure}[htb]
    \centerline{\includegraphics[width=0.95\textwidth]{example_picture.png}}
    \caption[]{This is an example picture}
    \label{example_picture}
    \end{figure}     

但是根据 tikzposter 手册,可以使用名为 \tikzpicture 的东西。该怎么做?有人能帮忙吗?

冈恩

答案1

这可能就是您要找的内容,但我不确定标签。您可以像这样为其添加标题:

\begin{tikzfigure}[CAPTION HERE]
\includegraphics[width=0.95\textwidth]{example_picture.png}
\end{tikzfigure} 

答案2

回顾@msakya 的回答,这说明了其特质:

\setcounter{figurecounter}{98}
\begin{tikzfigure}[CAPTION HERE\label{here}]
\includegraphics[width=0.95\textwidth]{example_picture.png}
\end{tikzfigure}
Figure \ref{here} ain't one.

相关内容