
Gostaria de mostrar a bibliografia na moldura de um projetor. Mas não consegui alcançá-lo. Este é um pequeno exemplo do código que empreguei.
\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 compilá-lo segui as instruções fornecidas em outros fóruns: pdflatex, bibtex, pdflatex, pdflatex.
Eu também tentei com isso:
\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}
Mas nenhum deles funcionou.
Responder1
Aqui está um exemplo usando o Biblatex, que funciona com a bibliografia de exemplo que você forneceu:
\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}
A bibliografia resultante fica assim:
A partir daqui você pode começar a mudar o estilo de acordo com suas necessidades. Por exemplo,
\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}
Responder2
No bibtex
exemplo, falta o estilo, por exemplo, 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}
Seu segundo exemplo compila bem para mim. Mas lembre-se que você terá que limpar seus arquivos auxiliares, caso mude de bibtex
para biblatex
.