
답변1
beamer
참고문헌의 \par
각 항목 내에 를 추가합니다 . \newblock
몇 가지 참고문헌 템플릿을 재정의하여 이 문제를 제거할 수 있습니다.
\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}