如何在 Beamer 中将徽标添加到每个页面的右上角或右下角

如何在 Beamer 中将徽标添加到每个页面的右上角或右下角

朋友们,我想在 Beamer 中将徽标添加到每个页面的右上角或右下角。但我搞不懂。我只能将其添加到页脚。在这种情况下,标题和名称被省略了。我该如何解决?这是我的 Beamer TeX 的一个最小示例。非常感谢。

\documentclass[12pt]{beamer}
\mode<presentation> {
\usetheme{Madrid}
\setbeamertemplate{navigation symbols}{}
}
\usepackage{indentfirst,amsmath, multicol,amssymb}
\usepackage{caption}
\usepackage{booktabs,colortbl} 

\usepackage{grffile,threeparttable}
\usepackage{graphicx,subfig,graphbox} 
\usepackage{tikz}
\usepackage[absolute,overlay]{textpos}
\setbeamertemplate{caption,footline}[numbered]

\def\name{Yan}
\hypersetup{
    colorlinks = true,
    urlcolor = blue,
    pdfauthor = {\name},
}
    \title[Introduction ]{An Introduction} 
\author{
    Yan}
\institute[CU] 

\medskip

\date{\today} % Date


\begin{document}
    \tikzstyle{every picture}+=[remember picture]
    
    \everymath{\displaystyle}

    \begin{frame}
        \titlepage 
    \end{frame}
    
    \begin{frame}{Outline} 
        \tableofcontents 
    \end{frame}

   
\section{Background}
   
    \begin{frame}{Why}

a integrated 

\end{frame}

\end{document}

答案1

你为什么不使用\logo宏呢?只需将其放在文档的序言中即可。

\logo{\includegraphics{pic}}

它将内容放在每页的右下角。

答案2

为了右上角落,使用

\setbeamertemplate{headline}{\hfill\includegraphics[width=1.5cm]{example-image}\hspace{0.2cm}\vspace{-1cm}}

相应调整参数(widthhspacevspace)。

相关内容