作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在 \bibentry
生成的完整内联引文前面显示数字来自 bibentry
包,匹配出现在引用书目中的那个。
在下面的 MWE 中,这将对应于缩进 \bibentry
前面的 [2] .我该怎么做?
\documentclass[11pt]{article}
\usepackage{bibentry}
\begin{filecontents}{test.bib}
@misc{Emma,
author = "Emma",
title = "Emma's publication",
year = "2001" }
@misc{Martha,
author = "Martha",
title = "Interesting thoughts",
year = "2003" }
@misc{Paul,
author = "Paul",
title = "Paul's essay",
year = "2000" }
\end{filecontents}
\begin{document}
\nobibliography*
\noindent
This is a usual reference~\cite{Emma}.
Now I'm referring to\\[5pt]
\indent \bibentry{Martha}.\\[5pt]
The following is again a normal reference~\cite{Paul}.
\bibliography{test}
\bibliographystyle{plain}
\end{document}
最佳答案
我猜 bibentry
不允许这样做,一种可能的解决方案是将新命令(或重新定义 \bibentry
)定义为 \cite
和 \bibentry
.
像这样的事情:
\let\oldbibentry\bibentry
\renewcommand{\bibentry}[1]{\cite{#1} \oldbibentry{#1}}
\documentclass[11pt]{article}
\usepackage{bibentry}
% redefine the bibentry command as cite then bibentry
\let\oldbibentry\bibentry
\renewcommand{\bibentry}[1]{\cite{#1} \oldbibentry{#1}}
\begin{filecontents}{test.bib}
@misc{Emma,
author = "Emma",
title = "Emma's publication",
year = "2001" }
@misc{Martha,
author = "Martha",
title = "Interesting thoughts",
year = "2003" }
@misc{Paul,
author = "Paul",
title = "Paul's essay",
year = "2000" }
\end{filecontents}
\nobibliography*
\begin{document}
\noindent
This is a usual reference~\cite{Emma}.
Now I'm referring to\\[5pt]
\indent \bibentry{Martha}.\\[5pt]
The following is again a normal reference~\cite{Paul}.
\bibliography{test}
\bibliographystyle{plain}
\end{document}
关于latex - 使用\bibentry 显示内联引文前的数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58727134/
好的,这不是一个正确的编程问题,但也许答案会对其他人有所帮助。我一直在尝试为 gnuplot 找到合适的 BibTeX 条目,以包含在科学出版物中。我只是不想引用任何指南,而是引用实际的软件。 有没有
我有一个装满 Windows .URL 文件的文件夹。我想将它们翻译成我论文的 MLA 引用列表。 这是Python的一个很好的应用吗?我怎样才能得到页面标题?我在使用 Python 3.1.1 的
我正在使用 habanero库以检索给定 DOI 的引文信息。在尝试检索有关引用给定 DOI 的作品的信息时,我遇到了障碍。例如, from habanero import counts c = co
我需要使用 hsqldb 使用 JUnit 测试 psql citext 第一步 使用liquibase设置psql-dialect to hsqldb Modify test databa
我是一名优秀的程序员,十分优秀!