我正在使用 Beamer 制作幻灯片。一切都很顺利,但制作讲义却不行。问题是标题页上的图形文件大于页面大小。如何解决这个问题?我尝试剪辑图像,但无法使其工作(请参阅下面的代码)。请注意,我不想更改输入图形的大小或纵横比(这\includegraphics[width=\paperwidth,height=\paperheight]{example-image}
不是我想要的)。
\documentclass[aspectratio=169,handout]{beamer}
\usepackage{tikz}
\mode<handout>{%
\usepackage{pgfpages}
\pgfpagesuselayout{2 on 1}[a4paper,border shrink=5mm]
}
\setbeamercolor{background canvas}{bg=yellow}
\title{My Title}
\begin{document}
{%
\setbeamertemplate{background canvas}{%
\begin{tikzpicture}
% \path[clip] (0,0) rectangle ++(\paperwidth,-\paperheight);
\node[opacity=.5,inner sep=0]{\includegraphics[width=\paperwidth]{example-image}};
\end{tikzpicture}%
}
\begin{frame}
\titlepage
\end{frame}
}
\begin{frame}
My second slide
\end{frame}
\begin{frame}
My third slide
\end{frame}
\begin{frame}
My fourth slide
\end{frame}
\end{document}
这是我希望前两张幻灯片的讲义的输出: