将 bibentry 的文本添加到 revtex4-2 中的主文档中

将 bibentry 的文本添加到 revtex4-2 中的主文档中

我正在尝试使用 revtex4-2 文档类在 latex 中获取“内联”引文(它们通常用于摘要或图片标题中)。它应该是这样的

这是一些文本,这里有一些参考[b.aa,参考标题(来源,2023 年)]。

代码如下

\documentclass[reprint, nofootinbib, amsmath, amssymb, aps]{revtex4-2}

\usepackage{natbib}
\usepackage{bibentry}
\usepackage{filecontents}

\begin{filecontents}{testbib.bib}
@book{ref,
  author = {aa, bb},
  title = {Reference Title},
  year = 2023,
  publisher = {dd},
}
\end{filecontents}

\begin{document}
This is some text, and here is some reference [\bibentry{ref}]

\bibliographystyle{apsrev4-2}
\bibliography{testbib}

\end{document}

生成一个包含文本的页面

这是一些文字,这里有一些参考[]

后面跟着一条水平线(表示后面跟着引用)

[1] b. aa,参考标题(dd,2023)。

这是常见的参考书目。

所以这里有两个问题。首先,条目没有显示在文本中,其次,参考文献仍然出现在参考书目中。我该如何添加这样的内联引用?

相关内容