除了投影仪上的标题页外,每张幻灯片的右上角都有大学徽标

除了投影仪上的标题页外,每张幻灯片的右上角都有大学徽标

已经有人问过几个类似的问题,但对我来说似乎没有什么用。

有什么简单的命令可以将我的大学徽标(我已将其作为图像保存在电脑上)放在每张幻灯片的右上角(标题页除外)?我正在使用 beamer。

提前谢谢了!

答案1

尝试下面的例子:

\documentclass[t]{beamer}
\beamertemplatenavigationsymbolsempty
\setbeamertemplate{footline}[frame number]
\usepackage{tikz}

\usepackage{pgf}
\logo{\pgfputat{\pgfxy(0,8)}{\pgfbox[right,base]{\includegraphics[height=1cm]{logo.pdf}}}}
\newcommand{\nologo}{\setbeamertemplate{logo}{}}

\begin{document}
{
\nologo 
\begin{frame}[t]{Hello world}
    \tableofcontents
\end{frame}
}
\section{Section 1}
\begin{frame}[t]{Hello world}
    \begin{enumerate}
        \item Item 1
        \item Item 2
        \item Item 3
    \end{enumerate}
\end{frame}
\section{Section 2}
\begin{frame}[t]{Hello world}
    \begin{enumerate}
        \item Item 1
        \item Item 2
        \item Item 3
    \end{enumerate}
\end{frame}
\end{document}

输出:

在此处输入图片描述

答案2

我认为你应该尝试使用纯标题幻灯片。对我来说,它很有用。

只需使用

\frame[plain]{\titlepage}

相关内容