Ajustar o espaçamento entre o texto principal e a nota de rodapé nos slides do projetor

Ajustar o espaçamento entre o texto principal e a nota de rodapé nos slides do projetor

Como ajustar (de preferência em um slide individual, em vez de aplicar a todos os slides) o espaçamento entre o texto principal e a nota de rodapé nos slides do beamer.

Por exemplo, nos slides a seguir, tentei ajustar, \skip\footinsmas não parece ter muito efeito no Slide 1, onde gostaria de ter um pouco mais de espaço entre o item 11 e a linha/texto da nota de rodapé

\documentclass{beamer}
\addtolength{\skip\footins}{4pc plus 8pt}
\usetheme{metropolis} % Use metropolis theme}
\title{A minimal example}
\date{\today}
\author{Matthias Vogelgesang}
\institute{Centre for Modern Beamer Themes}
\begin{document}
    \maketitle
    \begin{frame}{First Slide}
        \begin{itemize}
            \item Item 1
            \item Item 2
            \item Item 3
            \item Item 4
            \item Item 5
            \item Item 6
            \item Item 7\footnote{Some footnote}
            \item Item 8
            \item Item 9
            \item Item 10
            \item Item 11
        \end{itemize}
    \end{frame}
    \begin{frame}{Second Slide}
        \begin{itemize}
            \item Item 1
            \item Item 2
            \item Item 3
            \item Item 4
            \item Item 5
            \item Item 6
            \item Item 7\footnote{Some footnote}
            \item Item 8
            \item Item 9 
        \end{itemize}
    \end{frame}
\end{document}

Responder1

Se você quiser ajustar apenas alguns slides selecionados, basta adicionar um arquivo \vspace.

\documentclass{beamer}
\addtolength{\skip\footins}{4pc plus 8pt}
\usetheme{metropolis} % Use metropolis theme}
\title{A minimal example}
\date{\today}
\author{Matthias Vogelgesang}
\institute{Centre for Modern Beamer Themes}
\begin{document}
    \maketitle
    \begin{frame}%[t]
    \frametitle{First Slide}
        \begin{itemize}
            \item Item 1
            \item Item 2
            \item Item 3
            \item Item 4
            \item Item 5
            \item Item 6
            \item Item 7\footnote{Some footnote}
            \item Item 8
            \item Item 9
            \item Item 10
            \item Item 11
        \end{itemize}
        \vspace*{5mm}
    \end{frame}
    \begin{frame}%[t]
    \frametitle{Second Slide}
        \begin{itemize}
            \item Item 1
            \item Item 2
            \item Item 3
            \item Item 4
            \item Item 5
            \item Item 6
            \item Item 7\footnote{Some footnote}
            \item Item 8
            \item Item 9 
        \end{itemize}
    \end{frame}
\end{document}

insira a descrição da imagem aqui

Responder2

você está procurando algo assim?

insira a descrição da imagem aqui

\documentclass{beamer}
\usetheme{metropolis}   % use of the metropolis theme:
                        % it breaks standard placement
                        % of footnotes (at bottom of a frame)
\setbeamertemplate{footline}{}% <---

\setbeamertemplate{footnote}{ % <---
  \makebox[1em][l]{\insertfootnotemark}%
  \begin{minipage}{\dimexpr\linewidth-1em}
    \footnotesize\linespread{0.84}\selectfont\insertfootnotetext
  \end{minipage}\vskip 0pt 
                            }% end of footnote template

\title{A minimal example}
\date{\today}
\author{Matthias Vogelgesang}
\institute{Centre for Modern Beamer Themes}

\begin{document}
    \maketitle
\begin{frame}
\frametitle{First Slide}
    \begin{itemize}
        \item Item 1
        \item Item 2
        \item Item 3
        \item Item 4
        \item Item 5
        \item Item 6
        \item Item 7\footnote{Some footnote}
        \item Item 8
        \item Item 9
        \item Item 10
        \item Item 11
    \end{itemize}
\end{frame}

\begin{frame}
\frametitle{Second Slide}
    \begin{itemize}
        \item Item 1\footnote{test}
        \item Item 2
        \item Item 3
        \item Item 4
        \item Item 5
        \item Item 6
        \item Item 7\footnote{Nunc sed pede. Praesent vitae lectus. Praesent neque justo,
                              vehicula eget, interdum id, facilisis et, nibh.}
        \item Item 8
        \item Item 9
    \end{itemize}
\end{frame}
\end{document}

Responder3

No Beamer, esta distância é ajustada por \skip\@mpfootins, por exemplo:

\makeatletter
\skip\@mpfootins0pt
\makeatother

informação relacionada