如何为书籍添加卷/系列/Doi/

如何为书籍添加卷/系列/Doi/

我如何添加书籍系列:

@book{blaa,
    Author = {First Last},
    Publisher = {GAGA Publishing},
    Address = {New York, NY, USA},
    Series = {Lecture Notes in Something Cool},
    Title = {Something Good},
    Volume = {75},
    Doi = {hahahaha/haha},
    Year = {2015}}

我使用以下

 \usepackage[
  backend=bibtex,
        citestyle = alphabetic, 
        bibstyle = ieee-alphabetic,  
        sortlocale=en_US,
        sorting=nyt,
        backref=true
        hyperref=auto,
        firstinits=true,
        style=numeric,%style=alphabetic,
        defernumbers=true,
        isbn=false,
        eid=true,
        doi=true,
        series=true,
        bibencoding = utf8
]{biblatex}

但是那不会打印 DOI 和系列而只打印卷......?

更新:它有效并且我现在使用这些设置

\usepackage[
        backend=biber,
        %citestyle = alphabetic, 
        %bibstyle = ieee-alphabetic,  
        sortlocale=en_US,
        sorting=nyt,
        backref=true,
        hyperref=true,
        firstinits=true,
        style=numeric,%style=alphabetic,
        defernumbers=true,
        isbn=false,
        %eid=true,
        doi=true,
        %series=true,
        eprint=false,
        bibencoding = utf8
]{biblatex}

答案1

使用以下设置时,应打印 DOI

\usepackage[
        backend=biber,
        %citestyle = alphabetic, 
        %bibstyle = ieee-alphabetic,  
        sortlocale=en_US,
        sorting=nyt,
        backref=true,
        hyperref=true,
        firstinits=true,
        style=numeric,%style=alphabetic,
        defernumbers=true,
        isbn=false,
        %eid=true,
        doi=true,
        %series=true,
        eprint=false,
        bibencoding = utf8
]{biblatex}

相关内容