
Ich füge Referenzen am Ende der Beamer-Folien ein. Ich verweise in einer Folie zweimal auf dieselbe Fußnote, aber Latex erstellt eine doppelte Fußnote: Die Beschriftung/Referenz funktioniert nicht.
Ich habe eine Version dieses Problems für natbib gefunden:Referenzen am Ende der Beamer-Folien Ich mache das jedoch in Biblatex, da ich die Zitate formatieren muss.
Wie kann ich zweimal auf dieselbe Fußnote verweisen, ohne dass eine doppelte Fußnote erstellt wird? Ich muss den Zähler für jede Folie zurücksetzen und in jedem Frame bei 1 beginnen. Wie kann ich den Zähler für jede Folie zurücksetzen?
\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}