我想刪除目錄,因為當部分數量太大時,它可能會佔用太多空間。但是,我仍然想使用\section
命令,因為它們允許我在準備簡報時輕鬆導航。有沒有辦法從投影機文件中刪除目錄但不刪除書籤?
\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}{}
無需選擇不同的整體風格。您也可以將這些命令包含在{
...}
中,以使效果暫時有效。