biblatex:除非我删除 .bbl 文件,否则排序更改不起作用

biblatex:除非我删除 .bbl 文件,否则排序更改不起作用

除非我删除相应的 .bbl 文件,否则我无法更改参考书目的排序:

\documentclass{article}

\usepackage[
backend=biber,
sorting=nyt
]{biblatex}

\addbibresource{sample.bib}

\begin{document}
Anyway

\nocite{*}

\printbibliography
\end{document}

如果我改变排序,参考书目就不会显示。

sample.bib 文件:

@article{einstein,
    author = "Albert Einstein",
    title = "{Zur Elektrodynamik bewegter K{\"o}rper}. ({German})
    [{On} the electrodynamics of moving bodies]",
    journal = "Annalen der Physik",
    volume = "322",
    number = "10",
    pages = "891--921",
    year = "1905",
    DOI = "http://dx.doi.org/10.1002/andp.19053221004",
    keywords = "physics"
}

@book{dirac,
    title = {The Principles of Quantum Mechanics},
    author = {Paul Adrien Maurice Dirac},
    isbn = {9780198520115},
    series = {International series of monographs on physics},
    year = {1981},
    publisher = {Clarendon Press},
    keywords = {physics}
}

@online{knuthwebsite,
    author = "Donald Knuth",
    title = "Knuth: Computers and Typesetting",
    url  = "http://www-cs-faculty.stanford.edu/~uno/abcde.html",
    addendum = "(accessed: 01.09.2016)",
    keywords = "latex,knuth"
}

@inbook{knuth-fa,
    author = "Donald E. Knuth",
    title = "Fundamental Algorithms",
    publisher = "Addison-Wesley",
    year = "1973",
    chapter = "1.2",
    keywords  = "knuth,programming"
}

有任何想法吗?

相关内容