
Respuesta1
beamer
agrega un \par
dentro de cada uno \newblock
en la bibliografía. Podemos deshacernos de esto redefiniendo algunas plantillas de bibliografía:
\setbeamertemplate{bibliography entry title}{}
\setbeamertemplate{bibliography entry location}{}
\setbeamertemplate{bibliography entry note}{}
MWE
\documentclass{beamer}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{white1982,
author = {White, H.},
year = {1982},
title = {Maximum Likelihood Estimation of Misspecific Models},
journal = {Econometrica},
volume = {50},
pages = {1-26}
}
\end{filecontents}
\bibliographystyle{apalike}
\setbeamertemplate{bibliography entry title}{}
\setbeamertemplate{bibliography entry location}{}
\setbeamertemplate{bibliography entry note}{}
\begin{document}
\begin{frame}
\nocite{*}
\bibliography{\jobname}
\end{frame}
\end{document}