How can I remove certain fields from the citation in Biber?
My example document:
\documentclass[11pt]{article}
\usepackage[backend=biber,firstinits=true,citestyle=ieee]{biblatex}
\addbibresource{example_library.bib}
\begin{document}
Dummy text \cite{Zaharia2012}.
\printbibliography
\end{document}
With an example library example_library.bib of:
@article{Zaharia2012,
abstract = {We present Resilient Distributed Datasets (RDDs), a distributed memory abstraction that lets programmers perform in-memory computations on large clusters in a fault-tolerant manner. RDDs are motivated by two types of applications that current computing frameworks handle inefficiently: iterative algorithms and interactive data mining tools. In both cases, keeping data in memory can improve performance by an order of magnitude. To achieve fault tolerance efficiently, RDDs provide a restricted form of shared memory, based on coarse-grained transformations rather than fine-grained updates to shared state. However, we show that RDDs are expressive enough to capture a wide class of computations, including recent specialized programming models for iterative jobs, such as Pregel, and new applications that these models do not capture. We have implemented RDDs in a system called Spark, which we evaluate through a variety of user applications and benchmarks.},
archivePrefix = {arXiv},
arxivId = {EECS-2011-82},
author = {Zaharia, Matei and Chowdhury, Mosharaf and Das, Tathagata and Dave, Ankur},
doi = {10.1111/j.1095-8649.2005.00662.x},
eprint = {EECS-2011-82},
isbn = {978-931971-92-8},
issn = {00221112},
journal = {NSDI'12 Proceedings of the 9th USENIX conference on Networked Systems Design and Implementation},
pmid = {2011},
title = {{Resilient distributed datasets: A fault-tolerant abstraction for in-memory cluster computing}},
year = {2012}
}
How can I reduce the fields and only get an Output similarly to:
[1] M. Zaharia, M. Chowdhury, T. Das, et al. "Resilient distributed datasets: A fault-tolerant abstraction for in-memory cluster computing". In: NSDI'12 Proceedings of the 9th USENIX conference on Networked Systems Design and Implementation (2012).
Even when adding:
\DeclareSourcemap{
\maps{
\map{
\step[fieldsource=entrykey, match=\regexp{\Actan\Z}, final]
\step[fieldset=url, null]
\step[fieldset=arxivId, null]
\step[fieldset=archivePrefix, null]
}
}
}
\AtEveryCitekey{\clearfield{archivePrefix}\clearlist{issn}}
\AtEveryBibitem{\clearlist{archivePrefix, arxivId, issn}}
\AtEveryBibitem{\clearlist{url}}
\AtEveryBibitem{\clearlist{issn}}
these additional fields are not cleared.

.bcffile). Biber then reads this helper file, executes the sourcemap and writes the bibliography data in LaTeX-readable format to the.bblfile. In the second LaTeX run the data is read from the.bbland used. See also https://tex.stackexchange.com/q/63852/35864. – moewe Nov 16 '19 at 13:59