我正在尝试创建没有实际参考书目的孤立参考书目条目,但它们根本没有出现在最终编译的文档中。
梅威瑟:
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
] 命令只能在 之后发出\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}