投影机标题页右上角的文本

投影机标题页右上角的文本

我需要在标题页右上角添加一小段文字。有人知道怎么做吗?我尝试在网上搜索,但找不到。

答案1

您可以使用eso-pic

\documentclass{beamer}
\usepackage{eso-pic}
\title{A Presentation}
\author{Somebody}

\begin{document}
  \begin{frame}
    \AddToShipoutPictureFG*{
    \AtPageUpperLeft{\put(0,-10){\makebox[\paperwidth][r]{Some text}}}  
    }%
    \maketitle
  \end{frame}
\end{document}

在此处输入图片描述

请注意,其中*\AddToShipoutPictureFG*{将内容放在标题页和前景中(对于背景,请放\AddToShipoutPictureBG*{

tikz你也可以使用名为(这需要 2-3 次编译运行)的野兽

\documentclass{beamer}
\usepackage{tikz}
\title{A Presentation}
\author{Somebody}

\begin{document}
  \begin{frame}
    \begin{tikzpicture}[remember picture,overlay]
      \node[anchor=north east] at (current page.north east){Some text};
    \end{tikzpicture}
    \maketitle
  \end{frame}
  \begin{frame}
    Some text
  \end{frame}
\end{document}

相关内容