使用 footfullcit 证明引用 - Beamer

使用 footfullcit 证明引用 - Beamer

默认情况下,biblatex所有引用都是合理的,以防它们溢出第一行,至少是这样的,但在使用 Metropolis 主题的类cite中,由于某种原因,引用了 ,我没有得到这种行为。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}

编辑:令我更加困惑的是,footcites 的行为与 cites 相同

答案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}

在此处输入图片描述

相关内容