
Обычно ссылки хранятся на последнем слайде и цитируются с помощью \cite
команды. Я считаю, что такой вид записи немного сложен для понимания с точки зрения аудитории. В основном я использую \footnote
команду, потому что она показывает ссылку в нижнем колонтитуле того же слайда, что облегчает понимание. Но \footnote
не могу распечатать из файла bib, и поэтому я всегда в конечном итоге помещал одну полную ссылку с помощью \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}