我想在我的 Beamer 演示文稿中间添加一个标题页,以便它只包含标题,而不包含日期、徽标、作者姓名等。所以基本上,我想添加此页面:
在我的演示文稿中间没有徽标(IMT)和我的名字,但页面中间只有“机器学习中的最佳数据收集设计”。我目前采用的技术如下:
- 创建一个名为 title2.tex 的 .tex 文件,如下所示:
\section{}
\title[]{Optimal data collection design in machine learning}
%\subtitle[]{}
%\author[]{}
%\institute{}
%\date{}
\maketitle
- 在 main.tex 文件中输入此命令:
\include{title2} % <= here comes the file created the part
。
但是,这会产生上面的图片(即带有徽标和名称)。所以我想知道是否有办法告诉\maketitle
不要同时复制徽标和名称,而只复制标题并将其放在页面中间。
谢谢
答案1
您可以使用\usebeamercolor[fg]{title}\usebeamerfont{title}\inserttitle
与标题页上显示的相同颜色/字体插入标题:
\documentclass{beamer}
\title[]{Optimal data collection design in machine learning}
\begin{document}
\begin{frame}
abc
\end{frame}
\begin{frame}[plain]
\centering
\usebeamercolor[fg]{title}\usebeamerfont{title}\inserttitle\par
\end{frame}
\begin{frame}
content...
\end{frame}
\end{document}