beamer 包中的 smoothbars 问题

beamer 包中的 smoothbars 问题

可能重复:
如何在投影仪导航中获得多条框架点线?

我正在使用beamer包进行演示,以smoothbars在顶部显示索引。

问题是演示文稿太大,而且一个部分包含很多框架。因此没有足够的空间来放置所有点,最后几个部分显示不正确。

我附上了显示该问题的图片和 MWE。有人知道该如何解决吗?

在此处输入图片描述

梅威瑟:

\documentclass{beamer}
\usepackage{pgffor}  %< - For lots of frames
\usepackage{lmodern} %<- For suppresion some of the warnings
\mode<presentation>
{
 \usetheme{Warsaw}
        \useoutertheme{shadow}
        \useoutertheme[subsection=false]{smoothbars}
}
\begin{document}              
        \section{section 1}
                \subsection{sub1}
\foreach \x in {1,...,30}{\begin{frame}\end{frame}}

        \section{section 2}
                \subsection{sub2}
\foreach \x in {1,...,45}{\begin{frame}\end{frame}}

        \section{section 3}
                \subsection{sub3}
                        \begin{frame}\end{frame}

        \section{section 4}
                \subsection{sub4}
                        \begin{frame}\end{frame}

        \section{section 5}
                \subsection{sub5}
                        \begin{frame}\end{frame}
                        \begin{frame}\end{frame}
                        \begin{frame}\end{frame}

\end{document}

答案1

如果您使用\subsection,则样式的默认行为miniframes是项目符号将井然有序。请参阅如何在投影仪导航中获得多条框架点线?

相关内容