I am wirting a CV template that uses biblatex, and would like to make the authour field optional. If you are the sole authour of an aricle, and put it on your CV under ''publications'', it is pretty obvious that you are the authour and feels redundant to write your own name there. However, if there are multiple authours it makes sense to list the authours.
So my question is: is there a way to make all the mandatory authour/editor fields optional for all entry types?
Here is a MWE:
\documentclass[a4paper]{article}
\usepackage{xcolor}
\definecolor{soft}{rgb}{0.45,0.45,0.45}
\newcommand{\softbullet}{\textcolor{soft}{\small\textbullet}\hspace{0.5em}}
\usepackage[%
backend=biber,
style=authoryear,
sorting=ydnt,
hyperref=auto
]{biblatex}
\renewcommand{\bibsetup}{\vspace*{-\baselineskip}}
\AtEveryBibitem{\makebox[\bibhang][l]{\softbullet}}
\setlength{\bibitemsep}{0.25\baselineskip}
\usepackage{hyperref}
\begin{filecontents}[overwrite]{sample.bib}
@article{einstein,
author = "Albert Einstein",
title = "{Zur Elektrodynamik bewegter K{"o}rper}. ({German})
[{On} the electrodynamics of moving bodies]",
journal = "Annalen der Physik",
volume = "322",
number = "10",
pages = "891--921",
year = "1905",
DOI = "http://dx.doi.org/10.1002/andp.19053221004",
}
@book{dirac,
title = {The Principles of Quantum Mechanics},
author = {Paul Adrien Maurice Dirac},
isbn = {9780198520115},
series = {International series of monographs on physics},
year = {1981},
publisher = {Clarendon Press},
}
\end{filecontents}
\addbibresource{sample.bib}
\begin{document}
Foo baz baa
\nocite{*}
\printbibliography
\end{document}
Alternativley, maybe there could be some way to surpress the authour field in the bibliography for an entry?
why not just use the misc entry? Because I sort the bibliography in the template by entry type. i.e. \printbibliography[type=article,heading={Articles}], \printbibliography[type=thesis,title={Theses}], etc. Also, some fields are not covered by misc. For example, inbook has more optional fields than misc:
Side note: what sorting and bibliography style is best for a CV?

