nottype不起作用

nottype不起作用

我对 BibLaTeX 命令有疑问nottype=type

这是我的代码:

\usepackage[
    backend=bibtex,
    %natbib=true,
    style=numeric,
    citestyle=verbose,
    maxcitenames=50,
    maxbibnames=50,
    firstinits=false,
    sorting=none]{biblatex}
\bibliography{biblio} 


\section{Références}
\subsection{Monographie}
\nocite{*}
\printbibliography[heading=nonenottype=online, nottype=booklet, nottype=misc, nottype=techreport, nottype=manual]
\subsection{Webograhie}
\printbibliography[heading=none,type=online]
\subsection{Documents électroniques (PDF)}
\printbibliography[heading=none,nottype=online nottype=misc, nottype=inproceedings, nottype=book, nottype=misc, nottype=article]
\subsection{Iconographie}
\printbibliography[heading=none,type=misc]

这是我的.bib文件:

@techreport{rfc8555,
  author={Barnes, Richard and Hoffman-Andrews, Jacob and Kasten, James},
  title = "{Automatic Certificate Management Environment (ACME)}",
  howpublished = {Internet Requests for Comments},
  type="{RFC}",
  number=8555,
  pages = {1-95},
  year = {2019},
  month = {Mars},
  issn = {2070-1721},
  publisher = "{RFC Editor}",
  institution = "{RFC Editor}",
  url={https://tools.ietf.org/pdf/rfc8555.pdf}
}

@inproceedings{tiefenau2019usability,
  title={A Usability Evaluation of Let's Encrypt and Certbot: Usable Security Done Right},
  author={Tiefenau, Christian and von Zezschwitz, Emanuel and H{\"a}ring, Maximilian and Krombholz, Katharina and Smith, Matthew},
  booktitle={Proceedings of the 2019 ACM SIGSAC Conference on Computer and Communications Security},
  pages={1971--1988},
  year={2019},
  organization={ACM}
}

但不起作用,我的文件nottype=techreport中归类的项目在我的参考书目中显示为两个类别,即使其中一个类别拒绝这种类型的对象。.bib@techreport

答案1

techreport被定义为 的别名。要从特定参考书目中report排除,请使用:techreportnottype=report

\documentclass{article}
\usepackage[
    backend=bibtex,
    style=numeric,
    citestyle=verbose,
    maxcitenames=50,
    maxbibnames=50,
    firstinits=false,
    sorting=none]{biblatex}
\usepackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@techreport{rfc8555,
  author={Barnes, Richard and Hoffman-Andrews, Jacob and Kasten, James},
  title = "{Automatic Certificate Management Environment (ACME)}",
  howpublished = {Internet Requests for Comments},
  type="{RFC}",
  number=8555,
  pages = {1-95},
  year = {2019},
  month = {Mars},
  issn = {2070-1721},
  publisher = "{RFC Editor}",
  institution = "{RFC Editor}",
  url={https://tools.ietf.org/pdf/rfc8555.pdf}
}
@inproceedings{tiefenau2019usability,
  title={A Usability Evaluation of Let's Encrypt and Certbot: Usable Security Done Right},
  author={Tiefenau, Christian and von Zezschwitz, Emanuel and H{\"a}ring, Maximilian and Krombholz, Katharina and Smith, Matthew},
  booktitle={Proceedings of the 2019 ACM SIGSAC Conference on Computer and Communications Security},
  pages={1971--1988},
  year={2019},
  organization={ACM}
}
\end{filecontents*}
\bibliography{\jobname.bib}
\begin{document}
\section{References}
\subsection{Monographie}
\nocite{*}
\printbibliography[heading=none ,nottype=online, nottype=booklet, nottype=misc, nottype=report, nottype=manual]
\subsection{Documents electroniques (PDF)}
\printbibliography[heading=none, nottype=online, nottype=misc, nottype=inproceedings, nottype=book, nottype=misc, nottype=article]
\end{document}

在此处输入图片描述

相关内容