0

I'm doing a LaTeX beamer and am having a problem with \includegraphics. Around the image, a thin, green border is shown, which won't disappear in the presentation. This problem (or feature?) only occurs with one specific image and only when included as the original PDF (I want to keep the PDF to avoid loss in quality). I first thought, the problem stems from the package hyperref, so I tried to remove meta data, but nothing did change whatsoever.

The image with the green border around it.

Here is a MWE:

\documentclass[11pt]{beamer}
\begin{document}
    \begin{frame}
\begin{figure}[H]
        \centering
        \includegraphics[height=7.8cm, width=9.4cm]{Pictures/Stevie}
        \label{fig:Stevie}
\end{figure}
\end{frame}
\end{document}

Since the error only exists when using this one specific PDF, I provide the source image here: https://1drv.ms/b/s!An_8vYlVpuen3l5rtIgFKbYlZCDR

Juan
  • 67

1 Answers1

1

I found the problem to actually be in the PDF. There was a green background in the PDF itself, which was displayed when inserted in LaTeX. I managed to remove it with Adobe Acrobat.

Juan
  • 67