我最近问过这个关于复杂注释(如引用)的问题:
(如何使用 biber 实现参考文献的完全压缩并对分组引文添加注释?)
在那里,我正在寻找一种方法将评论纳入我的参考文献中,以便获得化学期刊中使用的典型参考书目:
我喜欢 Joseph Wright 提供的解决方案,它使用notes2bib
plus 命令\fullcite
以及调整引用的参考文献\fullcite
不会额外包含在参考书目中。但是,我缺少引用 bibnote 中各个条目的选项。有没有办法在引用条目时在 bibnote 编号中添加一个字母:[1a], [1b] ... 例如,使用类似于\bibnotemark[note1][a]
生成 [1a] 和\bibnotemark[note1][b]
[1b] 等的方法。
以下是上述问题中的 MWE:
\documentclass{article}
\usepackage{csquotes}
\usepackage[backend=biber,style=chem-acs,mcite,subentry]{biblatex}
\usepackage{notes2bib}
\bibnotesetup{cite-function = \supercite} % Make notes use superscript citations
\usepackage[utf8]{inputenc}
\bibliography{\jobname}
\DeclareBibliographyCategory{complexcited}
\newcommand*{\complexcite}[1]{%
\fullcite{#1}%
\addtocategory{complexcited}{#1}%
}
\begin{document}
For complex notes, things need to be done by
hand.\bibnote[note1]{This type of thing is described in:
a) \complexcite{Grubbs2003a},
b) \complexcite{Herrmann1999},
c) \complexcite{Nolan2011}.}
\printbibliography[notcategory=complexcited]
\end{document}