Using biblatex I don't obtain the name of the reference but the name of the article - in the .bib - file in bold.
Here's my code:
\documentclass{beamer}
\setbeamertemplate{bibliography item}{\insertbiblabel}
\mode<presentation> {\usetheme{Madrid}
}
\usepackage{graphicx} % Allows including images
\usepackage{booktabs} % Allows the use of \toprule, \midrule and \bottomrule in tables
\usepackage[utf8]{inputenc}
\usepackage[spanish]{babel}
\usepackage{hyperref}
\usepackage{pgfgantt}
\usepackage[backend=biber]{biblatex}
\addbibresource{presentation.bib}
%----------------------------------------------------------------------------------------
% TITLE PAGE
%----------------------------------------------------------------------------------------
\title[Short title]{Proyecto de Tesis: Holografía y sistemas integrables} % The short title appears at the bottom of every slide, the full title is only on the title page
\author{John Smith} % Your name
\institute[UCLA] % Your institution as it will appear on the bottom of every slide, may be shorthand to save space
{
University of California \\ % Your institution for the title page
\medskip
\textit{john.smith@example.com} % Your email address
}
\date{\today} % Date, can be changed to a custom date
\begin{document}
\begin{frame}
\titlepage % Print the title page as the first slide
\end{frame}
\begin{frame}
\frametitle{Outline} % Table of contents slide, comment this block out to remove it
\tableofcontents % Throughout your presentation, if you choose to use \section{} and \subsection{} commands, these will automatically be printed on this slide as an overview of your presentation
\end{frame}
%----------------------------------------------------------------------------------------
% PRESENTATION SLIDES
%----------------------------------------------------------------------------------------
%------------------------------------------------
\begin{frame}[allowframebreaks]
\frametitle{Resumen}
Las p-formas autoduales se definen en dimensión $d=2(p+1)$, donde $p$ es par . Su caso más sencillo, con $p=0$, corresponde al bosón quiral . Esta ecuación aparece como un caso particular de la denominada ``jerarquía de KdV''. Dicha jerarquía se puede formular como una acción de Chern-Simons en una dimensión extra, escogiendo condiciones de borde adecuadas para la conexión. El objetivo de esta tesis es generalizar esta construcción con el fin de generar sistemas integrables para p-formas en dimensiones superiores, con aplicaciones a supergravedad en seis dimensiones \cite{Marcus:1982yu}.
\end{frame}
%------------------------------------------------
%------------------------------------------------
\begin{frame}
\Huge{\centerline{Muchas gracias.}}
\end{frame}
%----------------------------------------------------------------------------------------
\end{document}
My purpose is being able to use the \footfullcite command. I've read this and this articles but I don't know the problem.



For the second comment: My mistake. Will edit my question. Thanks.
– hyriusen Jan 20 '19 at 21:54This is BibTeX). But your document setup requires you to run Biber instead. Follow the link to find out how to let your editor run Biber instead of BibTeX. Then delete the temporary files (.aux,.bbl,.bcf, ...) and run LaTeX, Biber, LaTeX, LaTeX (where 'LaTeX' is your favourite LaTeX flavour, for example pdfLaTeX or LuaLaTeX). Then check the.blgfile for info. – moewe Jan 20 '19 at 22:01pdflatexsettings, did you? Only Biber is relevant and the rest shouldn't have changed, so there is no reason that the editor should start to complain about pdfLaTeX all of a sudden. – moewe Jan 21 '19 at 07:01