图片未显示在 Tikzposter 中

图片未显示在 Tikzposter 中

我正在使用 Tikzposter,当我尝试添加图像时,编译后它不会显示在 pdf 中。我使用了以下代码:

 \block{A figure}
    {
        \begin{tikzfigure}
            \includegraphics[width=0.4\textwidth]{images/overleaf-logo}
        \end{tikzfigure}
    }
    \column{0.5}
    \block{Description of the figure}{\blindtext}

你能帮我解决一下吗?我需要完成我的海报。非常感谢。Ochaigbe

答案1

在里面tikzpicture除了绘图命令之外的所有内容都会被忽略。至于 TiZ 担心的\includegraphics{}只是更多的碎屑。您可能会在终端/日志中发现有关此事的警告。

任何一个

\block{A figure} {% maybe in a `center` environment?
  \includegraphics[width=0.4\textwidth]{images/overleaf-logo}
} 
\column{0.5} 
\block{Description of the figure}{\blindtext} 

或者

\block{A figure} {%
  \begin{tikzfigure} 
  \node {\includegraphics[width=0.4\textwidth]{images/overleaf-logo}};
  \end{tikzfigure}%
} 
\column{0.5} 
\block{Description of the figure}{\blindtext} 

但第二种方法毫无意义,除非你还想画点什么。所以如果你只是想添加一张图片,就应该使用第一种方法。

相关内容