\cite 和 \footnote 在 Beamer 中一起使用

\cite 和 \footnote 在 Beamer 中一起使用

通常,參考文獻保留在最後一張投影片並使用\cite指令引用。我覺得這樣的記法從觀眾的角度來看是不難理解的。大多數情況下,我使用\footnote命令,因為它在同一張投影片的頁腳處顯示參考,這使得更容易理解。但\footnote無法從圍脖文件打印,因此我總是最終將一份完整的參考文獻與\footnote.請參閱下面的範例 -

\documentclass{beamer}
\usetheme{Madrid}
\usepackage{bibentry}

\title[Test]{Test} 
\author{Author} 
\institute[]{Institute}
\date{\today} 

\begin{document}
\begin{frame}{Citation}
    This statement requires citation \cite{tobin1964commercial}

    But the way I want is \footnote{Tobin, James. Commercial banks as creators of" money.". Cowles Foundation for Research in Economics at Yale University, 1964.} %\footnote{tobin1964commercial}
\end{frame}

\begin{frame}{References}
    \bibliographystyle{amsalpha}
    \bibliography{bibfile}
\end{frame}
\end{document}

這就是生成的 PDF 的樣子 - 在此輸入影像描述

我想要的是一種方法,以便我可以\footnote\cite命令一起使用,例如\footnote{tobin1964commercial}.這應該會在頁腳中顯示完整的參考。

答案1

\footcite可能是您的解決方案:

\documentclass{beamer}

\setbeamertemplate{navigation symbols}{}

% only for this example, otherwise in .bib file
\usepackage{filecontents}

\begin{filecontents}{\jobname.bib}
@TECHREPORT{RePEc:cwl:cwldpp:159,
    title = {Commercial Banks as Creators of 'Money'},
    author = {Tobin, James},
    year = {1963},
    institution = {Cowles Foundation for Research in Economics, Yale University},
    type = {Cowles Foundation Discussion Papers},
    number = {159},
    url = {http://EconPapers.repec.org/RePEc:cwl:cwldpp:159}
}
\end{filecontents}

\usepackage[style=verbose,backend=biber]{biblatex}
\addbibresource{\jobname.bib}

\begin{document}
 \begin{frame}
    Text text \footcite{RePEc:cwl:cwldpp:159}
 \end{frame}

 \begin{frame}
     \printbibliography
 \end{frame} 

\end{document}

在此輸入影像描述

相關內容