尝试通过 TikZ 插入背景图像会导致角落周围出现额外的空白

尝试通过 TikZ 插入背景图像会导致角落周围出现额外的空白

我正在尝试在我的 beamer 模板中插入背景图像,如下所示:

\documentclass[10pt,c,aspectratio=169,a4paper]{beamer}
\usepackage{tikz}


\setbeamertemplate{background}{
    \begin{tikzpicture}%
     \node {\includegraphics[width=\paperwidth,height=\paperheight,keepaspectratio]{example-image-a}};
    \end{tikzpicture}
}

\begin{document}

    \section{Introduction}

    \begin{frame}

\end{frame}
\end{document}

这导致

在此处输入图片描述

如您所见,由于插入的图像周围有某种边界框,因此图像的西北角有一个空格(x-y)。但是,我想将图像定位在西北角的起始位置。

答案1

您需要设置inner sep=0pt

\documentclass[10pt,c,aspectratio=169,a4paper]{beamer}
\usepackage{tikz}


\setbeamertemplate{background}{
    \begin{tikzpicture}%
     \node[inner sep=0pt] {\includegraphics[width=\paperwidth,height=\paperheight,keepaspectratio]{example-image-a}};
    \end{tikzpicture}
}

\begin{document}

    \section{Introduction}

    \begin{frame}

\end{frame}
\end{document}

在此处输入图片描述

相关内容