
Estou preparando uma apresentação, sei que algumas pessoas não gostam de usar figuras para apresentações, etc. no entanto, é o que eu sei e funciona para mim, então mantenho as coisas simples, pois posso gerenciá-las :-)
Quero mover a nota de rodapé na parte inferior da página para a esquerda, é possível fazer isso?
\documentclass{beamer}
\usepackage[labelformat=empty]{caption}
\begin{document}
\section{My photo}
\begin{frame}
\frametitle{my photos}
\footnotesize\textbf Is this the same as previous figure?
\begin{figure}[h!]
\caption{This is an amazing photo\footnote{\url{https://www.linternaute.fr/dictionnaire/fr/definition/figure-1/}}}
\centering
\includegraphics[width=0.4\textwidth]{photo1.jpg}
\end{figure}
\footnotesize This figure comes from a very good photographer \footnote{\tiny Definition of figure (Entry 1 of 2)}
\end{frame}
\end{document}
Responder1
com sugestão de uso nas respostas à perguntanota de rodapé do projetor:
\documentclass[demo]{beamer}
\usepackage[labelformat=empty]{caption}
\usepackage{hanging}
\setbeamertemplate{footnote}{%
\hangpara{0.8em}{1}%
\makebox[0.8em][l]{\scriptsize\insertfootnotemark}\scriptsize\insertfootnotetext\par%
}
\begin{document}
\section{My photo}
\begin{frame}
\frametitle{my photos}
\footnotesize
Is this the same as previous figure?
\begin{figure}[h!]
\caption{This is an amazing photo\footnote{%
\href{https://www.linternaute.fr/dictionnaire/fr/definition/figure-1/}
{\scriptsize https://www.linternaute.fr/dictionnaire/fr/definition/figure-1/}}}
\centering
\includegraphics[width=0.4\textwidth]{photo1.jpg}
\end{figure}
This figure comes from a very good photographer\footnote{Definition of figure (Entry 1 of 2) \vspace{1.5ex}} % <---
\end{frame}
\end{document}
editar:parece que a posição padrão das notas de rodapé é a parte inferior dos quadros (se \footnote
estiver fora minipage
ou em alguma caixa). para levantá-los por algum espaço vertical acima da parte inferior do quadro, você tem duas possibilidades:
aumentar as distâncias entre as notas de rodapé com
\addtobeamertemplate{footnote}{}{\vspace{1.5ex}}
no último
footnote
quadro, adicione no final, por exemplo,\vspace{1.5ex}
como é feito acimaeu- não sei se existe uma solução que adicione automaticamente algum espaço vertical abaixo da última nota de rodapé do quadro, ou seja, mova as notas de rodapé acima do rodapé do quadro.
Responder2
Aqui está uma versão sem figura. Você deveria colocar \captionof
dentro de um grupo ou ambiente (ele configura \@captype
localmente), então usei o center
ambiente. Minha primeira escolha normalmente seria a minipágina, mas contém notas de rodapé internamente.
\documentclass{beamer}
\usepackage[labelformat=empty]{caption}
\begin{document}
\section{My photo}
\begin{frame}
\frametitle{my photos}
\footnotesize\textbf Is this the same as previous figure?
\begin{center}
\captionof{figure}{This is an amazing photo\footnote{\url{https://www.linternaute.fr/dictionnaire/fr/definition/figure-1/}}}
\centering
\includegraphics[width=0.4\textwidth]{example-image}\par
\end{center}
\footnotesize This figure comes from a very good photographer \footnote{\tiny Definition of figure (Entry 1 of 2)}
\end{frame}
\end{document}