ムウェ

ムウェ

私が使う

\bibliographystyle{apalike}

私にとっては完璧ですが、1 つの点が問題です。生成された参照リストが非常に長いのです。

質問。 「著者」、「記事のタイトル」、「ジャーナルタイトル」のエントリ間の改行を削除する方法はありますか?

ここに画像の説明を入力してください

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

MWE出力

関連情報