El proyector no muestra la bibliografía.

El proyector no muestra la bibliografía.

Me gustaría mostrar la bibliografía en un marco de un proyector. Pero no he podido lograrlo. Este es un breve ejemplo del código que he empleado.

\documentclass[10pt,t]{beamer}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}%insertar fotos pdf etc... (pdf,png,ps,eps)

\title{Neurohard}
\author{Fabio Galán Prado}
\date[2016]{2016}

\begin{document}

\begin{frame}
Hi \cite{158511}
\end{frame}

\begin{frame}
\frametitle{References}
\bibliography{bibliography}
\end{frame}

\end{document}

Where the bibliography.bib item is:

@ARTICLE{158511,
author={J. M. Zurada},
journal={IEEE Circuits and Devices Magazine},
title={Analog implementation of neural networks},
year={1992},
volume={8},
number={5},
pages={36-41},
keywords={MOS integrated circuits;analogue computer circuits;multiplying circuits;neural nets;MOS components;adjustable weights;analog control signal;analogue implementation;electrically tunable synapses;integrated-circuit analog multiplier;neural networks;neural processing algorithms;neurocomputers;synaptic connections;Arithmetic;Artificial neural networks;Computer networks;Computer vision;Concurrent computing;Embedded computing;Neural network hardware;Neural networks;Neurons;Very large scale integration},
doi={10.1109/101.158511},
ISSN={8755-3996},
month={Sept},}

Para compilarlo he seguido las instrucciones dadas en otros foros: pdflatex, bibtex, pdflatex, pdflatex.

También probé con esto:

\documentclass[10pt,t]{beamer}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}%insertar fotos pdf etc... (pdf,png,ps,eps)
\usepackage[backend=bibtex]{biblatex}
\addbibresource{bibliography.bib}

\title{Neurohard}
\author{Fabio Galán Prado}
\date[2016]{2016}

\begin{document}

\begin{frame}
Hi \cite{158511}
\end{frame}

%\begin{frame}
%\frametitle{References}
%\bibliography{bibliography}
%\end{frame}

\begin{frame}
\printbibliography 
\end{frame}

\end{document}

Pero ninguno de ellos funcionó.

Respuesta1

Aquí hay un ejemplo que utiliza Biblatex, que funciona con la bibliografía de ejemplo que proporcionó:

\documentclass{beamer}
\usepackage[natbib=true,style=authoryear,backend=bibtex,useprefix=true]{biblatex}
\addbibresource{bibliography.bib}
\begin{document}

\begin{frame}
Here is a reference: \citet{158511}
\end{frame}

\begin{frame}[t,allowframebreaks]
\frametitle{References}
\printbibliography
\end{frame}

\end{document}

La bibliografía resultante se ve así:

ingrese la descripción de la imagen aquí

Desde aquí puedes empezar a cambiar el estilo según tus necesidades. Por ejemplo,

\documentclass{beamer}
\usepackage[natbib=true,style=authoryear,backend=bibtex,useprefix=true]{biblatex}
\setbeamercolor*{bibliography entry title}{fg=black}
\setbeamercolor*{bibliography entry location}{fg=black}
\setbeamercolor*{bibliography entry note}{fg=black}
\setbeamertemplate{bibliography item}{}
\renewcommand*{\bibfont}{\scriptsize}
\addbibresource{bibliography.bib}
\begin{document}

\begin{frame}
Here is a reference: \citet{158511}
\end{frame}

\begin{frame}[t,allowframebreaks]
\frametitle{References}
\printbibliography
\end{frame}

\end{document}

ingrese la descripción de la imagen aquí

Respuesta2

En el bibtexejemplo, falta el estilo, por ejemplo, algo como\bibliographystyle{plain}

\documentclass[10pt,t]{beamer}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}

\title{Neurohard}
\author{Fabio Galán Prado}
\date[2016]{2016}

\begin{document}

\begin{frame}
Hi \cite{158511}
\end{frame}

\begin{frame}
\frametitle{References}
\bibliographystyle{plain}
\bibliography{test}
\end{frame}

\end{document}

ingrese la descripción de la imagen aquí


Tu segundo ejemplo se compila bien para mí. Pero recuerda que tienes que limpiar tus archivos auxiliares, si haces el cambio de bibtexa biblatex.

ingrese la descripción de la imagen aquí

información relacionada