
Beamer 슬라이드 하단에 참고자료를 올려 놓았습니다. 한 슬라이드에서 동일한 각주를 두 번 언급하고 있는데 라텍스가 중복된 각주를 생성합니다. 레이블/참조가 작동하지 않습니다.
natbib에 대해 이 문제의 버전을 찾았습니다.비머 슬라이드 끝에 있는 참고 자료 그러나 인용 형식을 지정해야 하므로 Biblatex에서 이 작업을 수행하고 있습니다.
동일한 각주를 두 번 참조하면서 중복된 각주가 생성되는 것을 방지하려면 어떻게 해야 합니까? 각 슬라이드마다 재설정하고 매 프레임마다 1부터 시작하려면 카운터가 필요합니다. 모든 슬라이드의 카운터를 어떻게 재설정하나요?
\documentclass[hyperref={pdfpagelabels=false},xcolor=x11names,compress,professionalfonts]{beamer}
\usepackage[backend=bibtex,style=verbose,citestyle=authoryear]{biblatex}
\addbibresource{biblatex-examples.bib}
\DeclareCiteCommand{\citejournal}
{\usebibmacro{prenote}}
{\usebibmacro{citeindex}%
\usebibmacro{journal}}
{\multicitedelim}
{\usebibmacro{postnote}}
\renewcommand{\footnotesize}{\tiny}
\newcommand{\customcite}[1]{(\citeauthor{#1}, \citeyear{#1})}
\newcommand{\customfootcite}[1]{\footnote{\citeauthor{#1} (\citeyear{#1}), \emph{\citetitle{#1}.} \citejournal{#1}}}
%\newcommand\foootcite[1]{\footnote{\tiny\bibentry{#1}}\label{\thepage:#1}}
%\newcommand\secondcite[1]{\textsuperscript{\ref{\thepage:#1}}}%This worked in Natbib, but is commented out because I'm using Biblatex now. . .
\DeclareFieldFormat[article]{citetitle}{#1}
\DeclareFieldFormat[article]{title}{\mkbibemph{#1}} %Removes quotiation marks, puts italics
\DeclareFieldFormat[article]{journaltitle}{#1} % italic journal title with comma
\renewbibmacro{in:}{\hspace{-2pt}}
\AtEveryCitekey{\clearfield{pages}\clearfield{volume}}
\include{formatting}
\begin{document}
\begin{frame}{Motivation}
\begin{itemize}
\item Individual investor behaviour: Household finance
\item Rationality in individual preference models vs behavioural finance
\item Rational learning vs biased learning~\customcite{murray}~\customfootcite{murray}
\item Learning by doing vs learning about ability~\customfootcite{murray}
\item Experimental studies: immediate outcomes~\customfootcite{augustine} \& well-structured feedback~\customfootcite{cotton}
\end{itemize}
\end{frame}
\end{document}