从标题页 BEAMER 删除页眉/页脚

从标题页 BEAMER 删除页眉/页脚

我使用 Beamer 进行演示。我使用的是柏林主题。我希望只有标题页(第一张幻灯片)不显示页眉和页脚行,指示主题索引、标题等。我尝试在第一张幻灯片的 \begin {frame} 之后使用 [plain],但它会带走大学徽标(我不想把它拿掉)。我该如何解决?谢谢 在此处输入图片描述

我想在所有其他框架的相同位置添加大学徽标(柏林主题)。

\documentclass[12pt]{beamer}
\usepackage[italian]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}

\newcommand{\pngfigspath}{./figures_png_beamer/}

\title{Indagine numerica sulle prestazioni di una turbina eolica ad asse verticale di tipo troposchiano}
\author[UniBG]{\texorpdfstring{\large Alessandro xxx\\ \small Relatore: Chiar.mo xxx\\ \small Correlatore: xxx}{Alessandro xxx}}
\date{Tesi di Laurea Magistrale, xxx}
\logo{\includegraphics[width=20mm]{\pngfigspath Uni}}
\institute[Uni]{Corso di Laurea Magistrale in Ingegneria meccanica\\Università xxx}

\usetheme{Berlin}

\begin{document}

\begin{frame}%[plain]
    \maketitle
\end{frame}

\end{document}

答案1

您必须暂时停用标题页的headlinefootline模板,然后恢复主题中的模板Berlin。设置特定模板的命令是\setbeamertemplate,您已经发现是headline/footline需要更改的相应模板。

要清除它们,只需调用\setbeamertemplate{headline}{},要恢复它们,请调用\setbeamertemplate{headline}[miniframes theme],注意使用右括号!

以下是如何在扩展的 MWE 中使用它:

\documentclass[12pt]{beamer}
\usepackage[italian]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}

\title{Indagine numerica sulle prestazioni di una turbina eolica ad asse verticale di tipo troposchiano}
\author[UniBG]{\texorpdfstring{\large Alessandro xxx\\ \small Relatore: Chiar.mo xxx\\ \small Correlatore: xxx}{Alessandro xxx}}
\date{Tesi di Laurea Magistrale, xxx}
\logo{\includegraphics[width=20mm]{example-grid-100x100bp}}
\institute[Uni]{Corso di Laurea Magistrale in Ingegneria meccanica\\Università xxx}

\usetheme{Berlin}

\begin{document}

\setbeamertemplate{headline}{}
\setbeamertemplate{footline}{}

\begin{frame}%[plain]
    \maketitle
\end{frame}


\setbeamertemplate{headline}[miniframes theme]
\setbeamertemplate{footline}[miniframes theme]

\section{Section}
\subsection{Subsection}
\frame{A frame}
\frame{Another frame}

\end{document}

这是标题页和第一张幻灯片:

在此处输入图片描述

答案2

与以下答案类似@TobiBS但是,为了使这个主题独立,可以重新定义组内的头部和脚注模板,这样会影响其他框架:

\documentclass[12pt]{beamer}
\usepackage[italian]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}

\title{Indagine numerica sulle prestazioni di una turbina eolica ad asse verticale di tipo troposchiano}
\author[UniBG]{\texorpdfstring{\large Alessandro xxx\\ \small Relatore: Chiar.mo xxx\\ \small Correlatore: xxx}{Alessandro xxx}}
\date{Tesi di Laurea Magistrale, xxx}
\logo{\includegraphics[width=20mm]{example-image-duck}}
\institute[Uni]{Corso di Laurea Magistrale in Ingegneria meccanica\\Università xxx}

\usetheme{Berlin}

\begin{document}

{
\setbeamertemplate{headline}{}
\setbeamertemplate{footline}{}
\begin{frame}%[plain]
    \maketitle
\end{frame}
}

\begin{frame}
content...
\end{frame}

\end{document}

相关内容