預設情況下,biblatex
它們的所有引用都是合理的,以防它們溢出第一行,至少在使用 Metropolis 主題的類別cite
中出於某種原因並引用 with我沒有得到這種行為。beamer
\footfullcite
認為這與 footcites 的行為相同,但顯然事實並非如此。
嘗試過谷歌搜索,但找不到如何證明腳引用合理的答案。誰能幫我?先感謝您
微量元素:
\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}