答案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}