Beamer에서는 \cite와 \footnote를 함께 사용합니다.

Beamer에서는 \cite와 \footnote를 함께 사용합니다.

일반적으로 참고문헌은 마지막 슬라이드에 보관되며 \cite명령을 사용하여 인용됩니다. 이런 표기법은 관객의 입장에서 이해하기에는 조금 어렵지 않을까 싶습니다. 주로 command를 사용하는데 \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}

여기에 이미지 설명을 입력하세요

관련 정보