根据beamer 文档,可以使用图像作为所有幻灯片的背景。
\setbeamertemplate{background}
{
\includegraphics[width=\paperwidth,height=\paperheight]{MyBackground.jpg}
}
里面的代码应该创建一个大小为x\setbeamertemplate{background}
的图像。\paperwidth
\paperheight
如果我有一张比这更小的图像,并且我不想调整它的大小,是否可以在整个页面上重复它,如果图像的大小与页面大小不一致,最终会被裁剪?
答案1
例如:
\documentclass{beamer}
\usepackage{multido}
\setbeamertemplate{background}{%
\parbox{\paperwidth}{\offinterlineskip%
\multido{}{20}{\multido{}{20}{\includegraphics[width=0.05\paperwidth]{example-image.png}}\newline}%
}%
}
\begin{document}
\begin{frame}{Test}
Hello
\end{frame}
\end{document}