
решение1
beamer
добавляет \par
в каждый \newblock
в библиографии. Мы можем избавиться от этого, переопределив несколько шаблонов библиографии:
\setbeamertemplate{bibliography entry title}{}
\setbeamertemplate{bibliography entry location}{}
\setbeamertemplate{bibliography entry note}{}
МВЭ
\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}