Beamer オプション フレーム

Beamer オプション フレーム

特定のフレーム内に法線スペースを配置したいのですが、または、巨大で巨大なスペースもいくつかあります。ここに写真があります。

ここに画像の説明を入力してください

[t, allowframebreaks=.70] を試しましたが、成功しませんでした。これが私のコードです。

\documentclass[c]{beamer}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[french]{babel}
\setbeamertemplate{frametitle continuation}{} 
\begin{document}
\begin{frame}[allowframebreaks=.70]
\frametitle{Plan}
\tableofcontents
\end{frame}    
\section{a}
\begin{frame} aaa \end{frame}
\section{b}
\begin{frame} bbb \end{frame}
\section{c}
\begin{frame} ccc \end{frame}
\section{d}
\begin{frame} ddd \end{frame}
\section{e}
\begin{frame} eee \end{frame}
\section{f}
\begin{frame} fff \end{frame}
\section{g}
\begin{frame} ggg \end{frame}
\section{h}
\begin{frame} hhh \end{frame}
\section{i}
\begin{frame} iii \end{frame}
\section{j}
\begin{frame} jjj \end{frame}
\section{k}
\begin{frame} kkk \end{frame}
\section{l}
\begin{frame} lll \end{frame}
\section{m}
\begin{frame} mmm \end{frame}
\section{n}
\begin{frame} nnn \end{frame}
\section{o}
\begin{frame} ooo \end{frame}
\section{p}
\begin{frame} ppp \end{frame}
\end{document}

答え1

フレームは完全に上部揃えになっていますが、Beamer は\vfill各セクション エントリの間に を配置するため、エントリ間のスペースが広がり、ページ全体が埋め尽くされます。

無効にするにはhttps://tex.stackexchange.com/a/170438/36296

\documentclass[c]{beamer}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[french]{babel}
\setbeamertemplate{frametitle continuation}{} 

\makeatletter
\patchcmd{\beamer@sectionintoc}
  {\vfill}
  {\vskip\itemsep}
  {}
  {}
\makeatother  

\begin{document}
\begin{frame}[t,allowframebreaks]
\frametitle{Plan}
\tableofcontents
\end{frame}    
\section{a}
\begin{frame} aaa \end{frame}
\section{b}
\begin{frame} bbb \end{frame}
\section{c}
\begin{frame} ccc \end{frame}
\section{d}
\begin{frame} ddd \end{frame}
\section{e}
\begin{frame} eee \end{frame}
\section{f}
\begin{frame} fff \end{frame}
\section{g}
\begin{frame} ggg \end{frame}
\section{h}
\begin{frame} hhh \end{frame}
\section{i}
\begin{frame} iii \end{frame}
\section{j}
\begin{frame} jjj \end{frame}
\section{k}
\begin{frame} kkk \end{frame}
\section{l}
\begin{frame} lll \end{frame}
\section{m}
\begin{frame} mmm \end{frame}
\section{n}
\begin{frame} nnn \end{frame}
\section{o}
\begin{frame} ooo \end{frame}
\section{p}
\begin{frame} ppp \end{frame}
\end{document}

ここに画像の説明を入力してください

関連情報