我正在制作一个 Beamer 演示文稿,并希望添加致谢文本。我使用标题作者研究所的标签,但现在我想添加更多文本。有致谢标签吗?有没有什么好的方法?下面是我的代码,由于致谢文本而无法编译。
\documentclass{beamer}
\usetheme{Warsaw}
\setbeamertemplate{footline}[page number]
\setbeamercovered{invisible}
\setbeamertemplate{navigation symbols}{}
\usepackage{graphicx}
\logo{\includegraphics[height=1.2cm]{LOGO}}
\title[Short title of the talk]{cool title}
\author{name1 and name2}
\institute[]
{
University of River, Big City. UK\\
\medskip
{\emph{[email protected]}}
}
\date{\today}
Acknowledgement: This work was performed within the
Mathematics of axiom1, with grant ref.
x12.
\begin{document}
\begin{frame}
\titlepage
\end{frame}
如果没有致谢文字,演示文稿仍可编译。有哪些可用选项?
答案1
您可以使用一些已经存在的命令来添加信息;例如,您可以这样说
\date{\today\\[2em]
{\footnotesize Acknowledgement: This work was performed within the
Mathematics and networks
(molten) project, which is supported by the Engineering
and Physical Sciences Research Council and the Research
Councils UK Digital Economy programme, with grant ref.
EPIxxx.}
}
答案2
以下是对我有用的方法;
公平地说,我之所以想到这样做只是因为我通常在 LyX 中工作并且无法实现 @GonzaloMedina 的解决方案——我尝试插入脚注并且 LyX 将其翻译如下:
\author{Mr. Indebted%
\thanks{All those lovely people I'm thankful for%
}, et al.}
这样做的结果是(错误?)单挑出做出致谢的作者——这对我来说很有用,因为几位作者获得了不同的资助,等等。
答案3
也许不是完美的解决方案,但你可以添加其他信息后序言和\titlepage
命令。
\开始{文档} \开始{框架} \标题页 致谢:这项工作是由……完成的。 \结束{框架}
答案4
您可以在完成标题框后创建新框。
\begin{frame}
\titlepage
\end{frame}
\begin{frame}
\frametitle{Acknowledgment}
This work was performed within the
Mathematics of Networks
(molten) project, which is supported by the Engineering
and Physical Sciences Research Council and the Research
Councils UK Digital Economy programme, with grant ref.
EPxxx.
\end{frame}