맨 왼쪽에 있는 각주를 이동하거나 조정하려면 어떻게 해야 하나요?

맨 왼쪽에 있는 각주를 이동하거나 조정하려면 어떻게 해야 하나요?

저는 프리젠테이션을 준비하고 있습니다. 어떤 사람들은 프리젠테이션 등에 사용되는 그림을 좋아하지 않는다는 것을 알고 있습니다. 그러나 그것은 제가 알고 있는 것이고 저에게 효과적이므로 관리할 수 있으므로 간단하게 유지합니다 :-)

페이지 하단의 각주를 가장 왼쪽으로 이동하고 싶은데 가능합니까?

\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

질문에 대한 답변에 사용 제안 포함비머 각주:

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

여기에 이미지 설명을 입력하세요

편집하다:각주의 기본 위치는 프레임 하단입니다(a가 \footnote외부 minipage또는 일부 상자인 경우). 프레임 바닥 위의 수직 공간을 들어 올리려면 두 가지 가능성이 있습니다.

  • 각주 사이의 거리를 늘립니다.

    \addtobeamertemplate{footnote}{}{\vspace{1.5ex}}
    
  • 예를 들어 위에서와 같이 footnote프레임의 마지막 부분 에 끝 부분을 추가합니다.\vspace{1.5ex}

  • 프레임의 마지막 각주 아래에 수직 공간을 자동으로 추가하는 솔루션(즉, 프레임 바닥글 위로 각주를 이동하는 솔루션)이 있는지 모르겠습니다.

답변2

피규어가 아닌 버전이 있습니다. \captionof그룹이나 환경(로컬로 설정됨) 안에 넣어야 하므로 환경 \@captype을 사용했습니다 center. 내 첫 번째 선택은 일반적으로 미니페이지이지만 내부적으로 각주를 수행합니다.

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

관련 정보