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