我在用\documentclass[9pt]{beamer}
。
我放
\title{}
\author{sam \& jony}
\institute{}
那么我想输入作者的电子邮件地址,该怎么做?
答案1
不妨这样做:
\documentclass{beamer}
\title{This is my title}
\author[sam \& joey]
{\parbox[t]{1.5in}{sam \\\texttt{[email protected]}} \and
\parbox[t]{1.5in}{joey \\ \and \texttt{[email protected]}}}
\institute{Somewhere U.}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\begin{frame}
next
\end{frame}
\end{document}