答え1
方法を知るには、ファイルを調べてbeamerthemeFrankfurt.sty
、どの外部テーマがロードされているかを確認する必要があります。これは通常、 を定義しますheadline
。ファイルには、次の内容が記載されています。
\useoutertheme[subsection=false]{smoothbars}
次に、テンプレートがbeamerouterthemesmoothbars.sty
どのように呼び出されるかを調べる必要がありますheadline
。次のことがわかります。
\defbeamertemplate*{headline}{smoothbars theme}
したがって、最初にをロードし、次に、beamertemplate をsmoothbars theme
ロードして、好みに合わせて設定する必要があります。Warsaw
headline
smoothbars theme
\documentclass{beamer}
\useoutertheme[subsection=false]{smoothbars}
\usetheme{Warsaw}
\setbeamertemplate{headline}[smoothbars theme]
\author{TeX.SE}
\title{How to use headline of Frankfurt in Warsaw theme?}
\begin{document}
\frame{\titlepage}
\section{Introduction}
\subsection{1}
\frame{Introduction}
\subsection{2}
\frame{Introduction}
\subsection{3}
\frame{Introduction}
\section{Methods}
\subsection{1}
\frame{Methods}
\section{Results}
\subsection{1}
\frame{Results}
\section{Conclusion}
\subsection{1}
\frame{Conclusion}
\end{document}