MWE

MWE

나는 사용한다

\bibliographystyle{apalike}

한 가지 세부 사항을 제외하고는 나에게 완벽합니다. 생성된 참조 목록이 매우 깁니다.

질문. 항목 '저자', '논문 제목' 및 '저널 제목' 사이의 줄 바꿈을 제거할 수 있는 방법이 있습니까?

여기에 이미지 설명을 입력하세요

답변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}

MWE 출력

관련 정보