列印除「僅資料」之外的所有參考書目條目

列印除「僅資料」之外的所有參考書目條目

作為文獻調查的一部分,我製作了一個巨大的 BibTeX 檔案(Biber 方言),其中包含所有感興趣文獻的條目(包括摘要)。我自由地使用了crossref字段,以避免耗時且容易出錯的會議記錄/書名、出版商地址等重複dataonly = {true}

如果不手動指定鍵,如何列印除dataonly = {true}條目之外的整個參考書目?

這是一個最小的非工作範例:

\documentclass{article}
\usepackage{biblatex}
\addbibresource{\jobname.bib}
\DeclareFieldFormat{abstract}{\par\small#1}
\renewbibmacro*{finentry}{\printfield{abstract}\finentry}

\usepackage{filecontents}

\begin{filecontents}{\jobname.bib}
@proceedings{acl,
  publisher = {Association for Computational Linguistics},
  address = {Stroudsburg, PA},
  dataonly = {true},
}

@proceedings{acl2015,
  year = 2015,
  booktitle = {Proceedings of the 53rd Meeting of the ACL},
  crossref = {acl},
  dataonly = {true},
}

@book{wordnet,
  year = 2016,
  booktitle = {An Introduction to WordNet},
  editor = {Gary Gnu},
  crossref = {acl},
  dataonly = {true},
}

@inproceedings{foo,
  author = {Foo Bar},
  title = {Some article},
  abstract = {Here is the abstract.},
  crossref = {acl2015},
}

@incollection{quux,
  author = {Quux quuux},
  title = {Why I love {WordNet}},
  abstract = {Another fine abstract.},
  crossref = {wordnet},
}

% And hundreds more entries...
\end{filecontents}

\begin{document}
\nocite{*}
\printbibliography
\end{document}

這將列印以下內容:

顯示五個條目的參考書目,包括 dataonly = {true} 的條目

但是,我想要顯示的內容如下:

僅顯示未標記為 dataonly = {true} 的兩個條目的參考書目

答案1

你已經成功了一半,不是dataonly = {true},而是

 options = {dataonly=true},

相關內容