我正在制作一个 latex beamer 演示文稿。空白幻灯片(背景中有狮子的标志)如下所示
现在,我想在此幻灯片中添加一个图形图像。当我将图形添加到幻灯片时,背景徽标会被隐藏,如下图第二张图所示
但是,我不想隐藏老虎的背景标志。背景标志也应该与图像一起完全可见。请指导我找到可能的解决方案。
代码如下:
\documentclass[compress, xcolor=table]{beamer}
\usebackgroundtemplate{\includegraphics [width=\paperwidth,height=\paperheight]{slide_bg.png}}
\begin{document}
\section{Model order reduction of commensurate fractional order systems}
\subsection{Proposed approach}
\begin{frame}[t]{\bigskip \Large \vspace{-5mm}Model order reduction of commensurate fractional order systems }
\textbf{Proposed approach}
\begin{figure}[![enter image description here][3]][3]
\begin{center}
\includegraphics[height=4.4cm]{LFC121.jpg}
\vspace{6mm}
\caption{Block diagram of single area power system with controller}
\end{center}
\end{figure}
\end{frame}
\end{document}
答案1
问题似乎是你正在使用一个jpg
文件,无法透明从而覆盖背景图像。
只要图中的图像是透明的(通常是一个png
文件),您的代码就可以正常工作:
\documentclass[compress, xcolor=table]{beamer}
\usebackgroundtemplate{\includegraphics [width=\paperwidth,height=\paperheight]{example-image}} % Courtesy of mwe package
\begin{document}
\section{Model order reduction of commensurate fractional order systems}
\subsection{Proposed approach}
\begin{frame}[t]{\bigskip \Large \vspace{-5mm}Model order reduction of commensurate fractional order systems }
\textbf{Proposed approach}
\begin{figure}[![enter image description here][3]][3]
\begin{center}
\includegraphics[height=4.4cm]{PNG_transparency_demonstration_1.png} % Courtesy of https://upload.wikimedia.org/wikipedia/commons/4/47/PNG_transparency_demonstration_1.png
\vspace{6mm}
\caption{Block diagram of single area power system with controller}
\end{center}
\end{figure}
\end{frame}
\end{document}
(您需要下载这个文件并将其放在与此示例要编译的源代码相同的文件夹中)。
答案2
pdftk 命令行程序具有stamp
和background
参数,可用于将图像放置在幻灯片的后面或前面。例如,我在 draft.pdf 中有一个带有透明背景的“草稿”印章。我将这个印章应用到我的演示文稿 pdf 文件中,如下所示...
pdftk presentation.pdf stamp draft.pdf output draft_presentation.pdf
您需要让您的邮票 PDF 文件与您的演示文稿的页面大小相同。此外,它还需要透明背景。祝您好运!