文章和论文采用 biblatex 数字格式,风格相同

文章和论文采用 biblatex 数字格式,风格相同

在数字样式中,文章和论文集的年份格式不同。对于非学术文档,我需要它们采用相同的格式。我设法在年份周围添加了括号,从论文集中删除了“in:”,但我还需要删除论文集参考文献中年份前的点。我只需要作者、标题、书名(或期刊)和年份字段。我在这里查找了很多问题,但找不到任何与此相关的问题。以下是我目前所拥有的示例参考:

\documentclass{article}

\usepackage[backend=biber,defernumbers=true,maxbibnames=99,sorting=ydnt,giveninits=true,style=numeric,autocite=plain]{biblatex}
\DeclareNameAlias{sortname}{first-last}

\DeclareFieldFormat[inproceedings]{date}{\mkbibparens{#1}}
\renewbibmacro{in:}{}

\begin{filecontents}{\jobname.bib}
@article{wombat2016,
    author   = {Walther Wombat and Klaus Koala},
    title    = {The true meaning of 42},
    journal  = {Journal of modern skepticism},
    year     = {2016},
}
@inproceedings{holleis2010,
    author    = {Holleis, Paul and Wagner, Matthias and Koolwaaij, Johan},
    title     = {Studying mobile context-aware social services in the wild},
    booktitle = {Proc. of the 6th Nordic Conf. on Human-Computer Interaction},
    year      = {2010},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\addbibresource{biblatex-examples.bib}

\begin{document}
\cite{wombat2016,holleis2010}

\printbibliography
\end{document}

参考文献的输出

相关内容