LaTeX 和 Bibtex:从 bib 文件打印单个完整参考文献的命令?
我希望能够在 LaTeX 文档中的任何位置打印 Bibtex .bib 文件中的单个参考文献 - 不是引用它,而是打印参考文献,与正常参考书目列表中显示的完全一样。
因此,如果这是常规引用,则会打印带括号的引用:
% Normal citation, appears as bracketed reference, e.g. [2]
\cite{Kawahara:2007p1116}
我想要类似以下内容的内容:
\print_citation{Kawahara:2007p1116}
它应该打印参考书目中出现的完整引用,如下所示:
[2] S 川原。日本说唱歌词中的半押韵和相似性知识。 东亚杂志 语言学,2007 年 1 月。
这可能吗?
I'd like to be able to print a single reference from a Bibtex .bib file anywhere in my LaTeX document—not cite it, but print the reference, exactly as it would appear in the normal bibliography listing.
So if this is a regular citation, that prints a bracketed reference:
% Normal citation, appears as bracketed reference, e.g. [2]
\cite{Kawahara:2007p1116}
I want something like the following:
\print_citation{Kawahara:2007p1116}
which should print the full citation as it appears in the bibliography, something like:
[2] S Kawahara. Half rhymes in japanese rap lyrics and knowledge of similarity. Journal of East Asian
Linguistics, Jan 2007.
Is it possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
将
\fullcite
与 biblatex 包一起使用,如 tex.stackexchange 上的这个答案。Use
\fullcite
with the biblatex package as mentioned in this answer on tex.stackexchange.bibentry 包将提供内联参考书目。参考:http://stefaanlippens.net/bibentry。
不过我自己还没有尝试过。
bibentry package would provide inline bibliography. Ref: http://stefaanlippens.net/bibentry.
I've not tried it out myself though.
我的简历很好地使用了
multibib
:在此处编辑了一些不那么自我推销的内容。
My CV uses
multibib
nicely:Edited with something less self-promoting here.
另请参阅此答案,提供了一个使用
biblatex
及其类别系统的技巧:See also this answer, that provides a trick using
biblatex
and its category system: