Biblatex 自定义 chem-angew 风格(脚注)

Biblatex 自定义 chem-angew 风格(脚注)

我想自定义chem-angewbiblatex 参考书目样式,以便同时包含脚注。我喜欢这种样式输出参考书目和引用的方式(我正在使用\autocite{foo}),但我希望在脚注中保留一小段引用摘录。

例如,这是参考书目部分的参考文献: 参考书目示例

我希望脚注,在我引用的页面上,是这样的:

脚注示例

我该如何实现这一点?我尝试过使用,\footcite{foo}但不起作用。Also 也不\footnote适合,因为我希望它使用 bibtex 实现自动化。我也尝试过citesyle=verbose-note,bibstyle=chem-angew,这是我设法实现的最接近的样式。但文本中的第一个引用很冗长,我不想要它(我只需要文本中的数字)。


附加详细信息:我没有使用biber引擎,而是使用了bibtex一个。我在 Windows 上使用 Miktex 和 TekWorks。


最小工作示例:

\documentclass[12pt,a4paper,twoside,openright]{book}
\usepackage[
    hyperref=true,
    url=false,
    isbn=false,
    backref=false,
    style=chem-angew,
    maxcitenames=3,
    maxbibnames=100,
    backend=bibtex]{biblatex}
\bibliography{Bibliografia}{}

\begin{document}
Lorem ipsum bibliography.\autocite{foo}
\newpage
\printbibliography
\end{document}

Bibligrafia.bib文件内容:

@article{foo,
    title={Spent coffee bioelastomeric composite foams for the removal of Pb2+ and Hg2+ from water},
    author={Chavan, Asmita A and Pinto, Javier and Liakos, Ioannis and Bayer, Ilker S and Lauciello, Simone and Athanassiou, Athanassia and Fragouli, Despina},
    journal={ACS Sustainable Chemistry \& Engineering},
    volume={4},
    number={10},
    pages={5495--5502},
    year={2016},
    publisher={ACS Publications}
}

相关内容