答案1
此书目看起来像是用 制作的amsrefs
。问题中提到的两个功能也可以用 实现biblatex
。对于页面引用,请使用选项backref
。Mathscinet 链接需要更多工作,我已将其打包在此处:https://github.com/pzorin/biblatex-mr(可能不是最干净的解决方案)
答案2
要创建 MR 链接,请使用包msc-link
中的选项amsrefs
,并确保在参考书目条目中提供 MR 编号。另请注意,这需要包hyperref
。我发现创建 MR 链接的最简单方法是从 MathSciNet 复制整个 bibtex 条目并按照我提到的方式使用amsrefs
。amsrefs
软件包使用指南还有一些其他有用的提示。
工作示例(使用 MathSciNet 帮助页面中给出的参考):
文档.tex
\documentclass{article}
\usepackage[msc-links]{amsrefs}
\usepackage{hyperref}
\begin{document}
In \cite{MR3385638} the authors proves some phenomenal theorems.
\bibliography{refs}
\end{document}
参考文献
@article {MR3385638,
AUTHOR = {Saxton, David and Thomason, Andrew},
TITLE = {Hypergraph containers},
JOURNAL = {Invent. Math.},
FJOURNAL = {Inventiones Mathematicae},
VOLUME = {201},
YEAR = {2015},
NUMBER = {3},
PAGES = {925--992},
ISSN = {0020-9910},
MRCLASS = {05C65 (05C69)},
MRNUMBER = {3385638},
MRREVIEWER = {Eoin Long},
DOI = {10.1007/s00222-014-0562-8},
URL = {https://doi.org/10.1007/s00222-014-0562-8},
}