我如何移动最左边的脚注或调整它

我如何移动最左边的脚注或调整它

我正在准备一个演示文稿,我知道有些人不喜欢使用图形进行演示等。然而,这是我所知道的并且它对我有用,所以我尽可能保持简单:-)

我想将页面底部的脚注移至最左侧,可以这样做吗?

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

答案1

在回答问题时使用建议beamer 脚注

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

在此处输入图片描述

编辑:似乎脚注的默认位置是框架的底部(如果\footnote在外面minipage或某个框)。为了将它们提升到框架底部上方的某个垂直空间,您有两种可能性:

  • 增加脚注之间的距离

    \addtobeamertemplate{footnote}{}{\vspace{1.5ex}}
    
  • footnote在框架的最后添加它的结尾,例如\vspace{1.5ex}如上所示姆韦

  • 我不知道是否存在解决方案,它会自动在框架中的最后一个脚注下方添加一些垂直空间,即将脚注移到框架页脚上方。

答案2

这是非图形版本。您应该将其放在\captionof组或环境中(它\@captype在本地设置),因此我使用了center环境。我的第一选择通常是 minipage,但它在内部有脚注。

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

相关内容