参考文献のない孤立した参考文献エントリ

参考文献のない孤立した参考文献エントリ

実際の参考文献なしで孤立した参考文献エントリを作成しようとしていますが、最終的にコンパイルされたドキュメントにはまったく表示されません。

MWE:

document.tex

\documentclass{article}
\usepackage{bibentry}

\begin{document}
    Some text
    \bibentry{thing}
    \bibliographystyle{alpha}
    \nobibliography{biblography}
    \nocite{*}
\end{document}

biblography.bib

@Article{thing,
author="Someone",
title="Something",
journal="Some Journal",
year="2018",
month="Feb",
day="12",
}

出力は「何らかのテキスト」のみを含み、参考文献のエントリがない文書です。エントリが表示されるようにしたいです。

答え1

発行する必要があります\nobibliography 前にのいかなる使用\bibentry

bibentryドキュメンテーション言う

これらの [ \bibentry] コマンドは の後にのみ発行できます\nobibliography。そうでない場合、参照テキストが不明になります。

\documentclass{article}
\usepackage{bibentry}

\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@Article{thing,
author="Someone",
title="Something",
journal="Some Journal",
year="2018",
month="Feb",
day="12",
}
\end{filecontents}


\begin{document}
  \nobibliography{\jobname}
  Some text
  \bibentry{thing}
  \bibliographystyle{alpha}
\end{document}

関連情報