beamer 主题 JuanLesPins

beamer 主题 JuanLesPins

我如何在框架底部插入我的姓名、大学名称和号码?

\documentclass{beamer}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[french]{babel}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{colortbl}
\usetheme{JuanLesPins}

答案1

\documentclass{beamer}
\usetheme{JuanLesPins}
\defbeamertemplate{footline}{Foot}{%
  \insertauthor\hfill\insertinstitute\hfill\insertframenumber}
\author{John Johnson}
\title{The history of ants}
\institute{Stanford Universty}
\setbeamertemplate{footline}[Foot]
\begin{document}
\maketitle
\begin{frame}{First frame}{subtitle}
foo
\end{frame}
\end{document}

在此处输入图片描述

相关内容