从单个投影仪框架中删除侧边栏

从单个投影仪框架中删除侧边栏

我喜欢使用 Beamer Goettingen 主题,因为它有一个漂亮的侧边栏。我想从偶尔的幻灯片中删除它,这样文本就可以一直显示下去。但是,虽然 [plain] 选项删除了侧边栏,但文本仍然会换行,就好像侧边栏在那里一样(下面是最小工作示例)。如何让文本换行到幻灯片上?

\documentclass{beamer}
\usetheme{Goettingen}
\usepackage{lipsum}
\usecolortheme{seahorse}

\begin{document}

\begin{frame}[plain]{title}

\lipsum

\end{frame}

\end{document}

答案1

enter image description here

\documentclass{beamer}
\usetheme{Goettingen}
\usepackage{lipsum}
\usecolortheme{seahorse}

\begin{document}

\begin{frame}{title}

\lipsum

\end{frame}

\begin{frame}[plain]{title}
\advance\textwidth2cm
\hsize\textwidth
\columnwidth\textwidth
\lipsum

\end{frame}

\end{document}

答案2

根据 David 的回答,您可以执行以下操作。我还建议您删除导航符号,因为这种方法存在问题specialframe

\documentclass[c]{beamer}
\usetheme{Goettingen}
\usepackage{lipsum}
\usecolortheme{seahorse}
\setbeamertemplate{navigation symbols}{} % removes navigation symbols

\newenvironment{specialframe}
{
    \begingroup
    \advance\textwidth2cm % see beamerthemeGoettingen.sty for the number
    \hsize\textwidth
    \columnwidth\textwidth
    \begin{frame}[plain]
}
{
    \end{frame}
    \endgroup
}

\begin{document}

\begin{specialframe}
\frametitle{This is a special frame}

\lipsum[1]

\end{specialframe}

\begin{frame}{No special frame}

\lipsum[2]

\end{frame}

\end{document}

相关内容