footfullcit による参照の正当化 - Beamer

footfullcit による参照の正当化 - Beamer

デフォルトでは、biblatex少なくとも では、最初の行からはみ出した場合に備えてすべての参照が揃えられますがcite、何らかの理由で、beamerMetropolis テーマを使用して を引用しているクラスでは、\footfullciteこの動作が理解できません。

フットサイトでも同様の挙動になると思っていましたが、どうやらそうではないようです。

グーグルで検索してみましたが、脚注の引用を正当化する方法についての答えが見つかりませんでした。誰か助けてくれませんか?よろしくお願いします

MWE:

\documentclass[10pt]{beamer}
\usetheme[progressbar=frametitle]{metropolis}
\usepackage{biblatex}
\addbibresource{biblatex-examples.bib}

\begin{document}
\begin{frame}{Trial Slide}
Text \footfullcite{sigfridsson}
\end{frame}
\end{document}

編集: 脚注は引用と同じ動作をするだろうという私の混乱を追加します

答え1

他のドキュメントクラスとは異なり、beamer は短いテキスト要素用に作成されているため、テキストを両端揃えにしません。両端揃えにすると、奇妙に見えることがよくあります。

脚注に位置合わせを追加するには、footnoteテンプレートを再定義します。

\documentclass[10pt]{beamer}
\usetheme[progressbar=frametitle]{moloch}% modern fork of the metropolis theme
\usepackage{biblatex}
\addbibresource{biblatex-examples.bib}

\usepackage{ragged2e}
\setbeamertemplate{footnote}{
  \parindent 1em\noindent%
  \raggedright
  \hbox to 1.8em{\hfil\insertfootnotemark}\justifying\insertfootnotetext\par%
}

\begin{document}
\begin{frame}{Trial Slide}
Text \footfullcite{sigfridsson}
\end{frame}
\end{document}

ここに画像の説明を入力してください

関連情報