\includegraphics 图像未显示在 beamer 中

\includegraphics 图像未显示在 beamer 中

我正在尝试将在 inkscape 中制作的图像添加到 beamer 演示文稿中,如下所示。

\documentclass{beamer}
\usecolortheme[dark]{solarized}
\usetheme{default}
\begin{document}

\begin{frame}
  \frametitle{Scheme}
  \begin{columns}[onlytextwidth]
    \begin{column}{0.3\textwidth}
    \rule{100pt}{150pt}% Place your graphic here
    \end{column}
    \begin{column}{0.6\textwidth}
    \begin{figure}
        \centering
        \includegraphics[resolution=91,trim={1cm 1cm 1cm 1cm},width=1\columnwidth, keepaspectratio]{ntree}
    \end{figure}
      \centering
    \end{column}
\end{columns}
\end{frame}

\end{document}

问题是生成的 pdf 在缩小时会丢失图像,如下所示:

enter image description here

缩小后,图像就消失了,

d

这仅仅是分辨率问题吗?我尝试增加 Inkscape 图形的 dpi。我还能做什么?

相关内容