¿Cómo puedo mover la nota al pie en el extremo izquierdo o ajustarla?

¿Cómo puedo mover la nota al pie en el extremo izquierdo o ajustarla?

Estoy preparando una presentación, sé que a algunas personas no les gusta que se usen figuras para la presentación, etc. Sin embargo, es lo que sé y funciona para mí, así que lo mantengo simple según puedo manejarlo :-)

Quiero mover la nota al pie en la parte inferior de la página hacia el extremo izquierdo, ¿es posible hacerlo?

\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} 

Respuesta1

con sugerencia de uso en respuestas a preguntasnota al pie del proyector:

\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}

ingrese la descripción de la imagen aquí

editar:Parece que la posición predeterminada de las notas a pie de página es la parte inferior de los marcos (si a \footnoteestá fuera minipageo en algún cuadro). Para levantarlos por un espacio vertical sobre la parte inferior del marco, tiene dos posibilidades:

  • aumentar las distancias entre las notas a pie de página con

    \addtobeamertemplate{footnote}{}{\vspace{1.5ex}}
    
  • en el último lugar footnotedel marco, agregue su extremo, por ejemplo, \vspace{1.5ex}como se hizo arribamwe

  • No sé si existe una solución que agregará automáticamente un espacio vertical debajo de la última nota al pie del marco, es decir, moverá las notas al pie por encima del pie de página del marco.

Respuesta2

Aquí hay una versión sin figuras. Deberías ponerlo \captionofdentro de un grupo o entorno (se configura \@captypelocalmente), así que usé el centerentorno. Mi primera opción normalmente sería una minipágina, pero incluye notas a pie de página 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} 

información relacionada