セクションの数が多くなりすぎると ToC が多くのスペースを占める可能性があるため、ToC を削除したいと思います。ただし、\section
コマンドを使用すると、プレゼンテーションを準備するときに簡単にナビゲートできるため、引き続きコマンドを使用したいと思います。Beamer ドキュメントからブックマークを削除せずに ToC を削除する方法はありますか?
\documentclass[aspectratio=169, xcolor={x11names}]{beamer}
\usecolortheme{rose}
\useoutertheme[]{split}
\useinnertheme{inmargin}
\setbeamersize{sidebar width left=1cm, sidebar width right=1cm}
\setbeamersize{text margin left=0.5mm, text margin right=0.5mm}
\usepackage[square, nonamebreak, sort&compress, comma, numbers]{natbib}
\usepackage{blindtext}
\begin{document}
\section{Section 1}
\begin{frame}[allowframebreaks=0.9]{Sections in ToC}
\blindtext[3]
\end{frame}
\section{Section 2}
\begin{frame}[allowframebreaks=0.9]{Sections in ToC}
\blindtext[3]
\end{frame}
\section{Section 3}
\begin{frame}[allowframebreaks=0.9]{Sections in ToC}
\blindtext[3]
\end{frame}
\end{document}
答え1
見出しナビゲーションは、split
ロードしたテーマによって導入されます。 必要ない場合は、このテーマをロードしないか、見出しテンプレートを再定義してください。
\documentclass[aspectratio=169, xcolor={x11names}]{beamer}
\usecolortheme{rose}
\useoutertheme[]{split}
\useinnertheme{inmargin}
\setbeamersize{sidebar width left=1cm, sidebar width right=1cm}
\setbeamersize{text margin left=0.5mm, text margin right=0.5mm}
\usepackage[square, nonamebreak, sort&compress, comma, numbers]{natbib}
\usepackage{blindtext}
\setbeamertemplate{headline}{}
\begin{document}
\section{Section 1}
\begin{frame}[allowframebreaks=0.9]{Sections in ToC}
\blindtext[3]
\end{frame}
\section{Section 2}
\begin{frame}[allowframebreaks=0.9]{Sections in ToC}
\blindtext[3]
\end{frame}
\section{Section 3}
\begin{frame}[allowframebreaks=0.9]{Sections in ToC}
\blindtext[3]
\end{frame}
\end{document}
答え2
簡単に答えると
\setbeamertemplate{headline}{}
下部でも同じことができます。
\setbeamertemplate{footline}{}
全体的なスタイルを変える必要はありません。効果を一時的にするために、これらのコマンドを内部に含むセクションを{
...で囲むこともできます。}