
Beamer スライドの下部に参照を配置しています。 1 つのスライドで同じ脚注を 2 回参照していますが、LaTeX によって重複した脚注が作成されます。ラベル/参照が機能しません。
natbib のこの問題のバージョンを見つけました:ビーマースライドの最後にある参考文献 ただし、引用をフォーマットする必要があるため、私はこれを Biblatex で行っています。
同じ脚注を 2 回参照しながら、重複した脚注が作成されないようにするにはどうすればよいですか? スライドごとにカウンターをリセットし、フレームごとに 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}