我对 biblatex 还比较陌生,但对 latex 有一些经验。我想只打印参考书目中的初始页而不是页码范围,并抑制前缀页的打印。我知道有人问过类似的问题,但找不到解决办法。这是我的 MWE:
\documentclass[12pt]{report}
\usepackage[
backend=biber,
style=numeric-comp,
url=false,
eprint=false,
date=year,
doi=false,
sorting=none
]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@ARTICLE{Born_1926,
author = {Born, M.},
title = "{Zur Quantenmechanik der Sto{\ss}vorg{\"a}nge}",
journal = {Zeitschrift fur Physik},
year = 1926,
month = dec,
volume = 37,
pages = {863-867},
doi = {10.1007/BF01397477}
}
\end{filecontents}
\addbibresource{\jobname.bib}
\nocite{*}
\begin{document}
\printbibliography
\end{document}
答案1
\DeclareFieldFormat{pages}{\mkfirstpage{#1}}