我按照这个答案将图片放在了整张幻灯片上:
https://tex.stackexchange.com/a/333121/27523
{
\setbeamertemplate{navigation symbols}{}
\begin{frame}[plain]
\makebox[\linewidth]{\includegraphics[width=\paperwidth]{kernel-panic.png}}
\end{frame}
}
现在,我想在图片上添加一些文字。我写道
\begin{frame}[plain]{The problem}
但这会把画面往下推。
我怎样才能让 LaTeX 将图片视为背景?这样我就可以在上面写标题。
答案1
引用问题的另一个答案给出了解决方案:
https://tex.stackexchange.com/a/248218/27523
{
\setbeamertemplate{navigation symbols}{}
\setbeamertemplate{background canvas}{\includegraphics[height = \paperheight,
width = \paperwidth]{image.jpg}}
\begin{frame}[plain]
\end{frame}
}
是的,顾名思义,这会将图片设置为背景画布。