我有以下 TeX 部分:
\documentclass[landscape]{slides}
\usepackage[landscape]{geometry}
\author{My Name}
\title{My Title}
\date{The Date}
\begin{document}
\begin{slide}
\maketitle
\end{slide}
\end{document}
如果我尝试在标题幻灯片中添加其他内容,它将被推送到下一张幻灯片。如何将我的 Twitter 名称和我的 GitHub 帐户链接添加到标题页?
答案1
\title
,\author
实际上\date
只是将其内容存储在\@title
、\@author
和中\@date
。因此,如果您愿意,您可以在其中任何一个中存储更多内容:
\documentclass[landscape]{slides}
\usepackage[landscape]{geometry}% http://ctan.org/pkg/geometry
\usepackage{hyperref}% http://ctan.org/pkg/hyperref
\author{\parbox{.5\textwidth}{\centering
My Name \\
\small Twitter: \href{http://www.twitter.com/whocares}{@whocares} \\[3pt]
Github: \href{https://github.com/whocares/repository}{Github Repository}}}
\title{My Title}
\date{The Date}
\begin{document}
\begin{slide}
\maketitle
\end{slide}
\end{document}
可以通过 更改超链接的格式\hypersetup
以及布局。
答案2
你可以做类似的事情
\author[My name]{My name \\ {\ttfamily [email protected]}}
\date[The date]{The date \\ {\smaller Name of the conference}}
...
免责声明:此解决方案适用于该beamer
包。我不知道该包的行为slides
。