\documentclass[ngerman]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[style=authoryear, backend=biber]{biblatex}
\begin{filecontents}{\jobname.bib}
@report{alesina,
author = {Alberto Alesina and Silvia Ardagna and Francesco Trebbi},
title = {Who Adjusts and When?},
subtitle = {The Political Economy of Reforms},
date = {2006-02},
type = {Working Paper},
number = {12049},
institution = {National Bureau of Economic Research},
location = {Cambridge, MA},
url = {http://www.nber.org/papers/w12049},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\addbibresource{biblatex-examples.bib}
\begin{document}
\cite{sigfridsson,alesina}
\printbibliography
\end{document}\documentclass[ngerman]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[style=authoryear, backend=biber]{biblatex}
\begin{filecontents}{\jobname.bib}
@article{alesina,
author = {Alberto Alesina and Silvia Ardagna and Francesco Trebbi},
title = {Who Adjusts and When?},
subtitle = {The Political Economy of Reforms},
date = {2006-10},
journal = {IMF Staff Papers},
volume = {53},
number = {S1},
pages = {1-29},
doi = {10.2307/30036020},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\addbibresource{biblatex-examples.bib}
\begin{document}
\cite{sigfridsson,alesina}
\printbibliography
\end{document}Das ist aber beides nicht ganz das, was Du als Soll zeigst. Meiner Meinung nach ist @inproceedings hier aber nicht die richtige Wahl. @inproceedings sind Artikel in Tagungsbänden. Du könntest jetzt natürlich probieren, die Ausgabe von @inproceedings-Einträgen ad hoc so zu ändern, dass Du hier die gewünschte Ausgabe bekommst, aber dann änderst Du für echte @inproceedings die Ausgabe auch.
Überflüssige Felder kannst Du z.B. mit \DeclareSourcemap ganz einfach loswerden. Mit \pertype kannst Du das auf einen Typen beschränken.
\DeclareSourcemap{
\maps[datatype=bibtex]{
\map{
\pertype{inproceedings}
\step[fieldset=publisher, null]
}
}
}
