![Beamer オプション フレーム](https://rvso.com/image/370286/Beamer%20%E3%82%AA%E3%83%97%E3%82%B7%E3%83%A7%E3%83%B3%20%E3%83%95%E3%83%AC%E3%83%BC%E3%83%A0%20.png)
特定のフレーム内に法線スペースを配置したいのですが、または、巨大で巨大なスペースもいくつかあります。ここに写真があります。
[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}