如何将标题和作者放入 CambridgeUS beamer 主题的页脚中

如何将标题和作者放入 CambridgeUS beamer 主题的页脚中

我正在使用 beamer 主题编写演示文稿;我编写的代码如下:

\documentclass{beamer}
%\documentclass[handout]{beamer}

% THIS PUTS TWO SLIDES ON EACH PAGE
%\usepackage{pgfpages}
%\pgfpagesuselayout{2 on 1}[a4paper,border shrink=5mm]

\usetheme{CambridgeUS}
\usepackage{time}             % date and time
\usepackage{graphicx, epsfig}
\usepackage[T1]{fontenc}      % european characters
\usepackage{amssymb,amsmath}  % use mathematical symbols
\usepackage{palatino}         % use palatino as the default font
\usepackage{multimedia}
\usepackage{subfigure}
\usepackage{mathrsfs}

% CREATES SHADED INSTEAD OF HIDDEN OVERLAYS
%\setbeamercovered{transparent}


% SOME COMMANDS I'VE CREATED FOR LONG COMMANDS I USE OFTEN
\newcommand{\ds}{\displaystyle}
\newcommand{\ve}{\varepsilon}
\newcommand{\der}[2]{\frac{d #1}{d #2}}
\newcommand{\pder}[2]{\frac{\partial #1}{\partial #2}}
\newcommand{\inv}{^{-1}}
\newcommand{\mat}[1]{\textbf{#1}}



\title{Un titolo a caso}
%\subtitle{An Introduction}
\author{\small Author: pinco\\
Assistant: pallo}
\institute{\large Polimi\\
\footnotesize Facolt\'a delle merendine industriali\\
\small Corso in cannoli e bomboloni} % COMMAND UNIQUE TO BEAMER
\date{\today}

\begin{document}

\begin{frame}
  \titlepage
\end{frame}

\end{document}

我得到的输出是这样的:

在此处输入图片描述

存在的问题如下:

1)正如您在下面的红色框中看到的,文本不适合;您看到的是:“Author: pinco Assinstan: pa”。我想要的只是作者的名字:“pinco”,而没有其他内容。

2)同样的问题仍然存在于应该包含此框架标题的灰色框中;然而我想要的是显示单词“Polifighe”。

能告诉我为了实现我的目标我应该在代码中改变什么吗?

答案1

如第 3.3 节所述beamer 文档、、\title\author接受方括号中的可选短参数。此短版本将放置在脚注中。

\documentclass{beamer}
\usetheme{CambridgeUS}
\usepackage[T1]{fontenc}      % european characters
\usepackage{amssymb,amsmath}  % use mathematical symbols
\usepackage{palatino}         % use palatino as the default font

\title[Polifighe]{Super long title that does not fit in the grey box below}
%\subtitle{An Introduction}
\author[pinco]{\small Author: pinco\\
Assistant: pallo}
\institute[]{\large Polimi\\
\footnotesize Facolt\'a delle merendine industriali\\
\small Corso in cannoli e bomboloni} % COMMAND UNIQUE TO BEAMER
\date{\today}

\begin{document}
\begin{frame}
  \titlepage
\end{frame}
\end{document}

[]注意后面的空白\institute。如果没有这个,研究所将在脚注中跟随作者。

在此处输入图片描述

相关内容