Eine Frage zum Eintrag eines Standard-ähnlichen Dokuments in einem mit
biblatex/bibtex erstellten Literaturverzeichnisses.

Ich möchte sowohl als Zitat (mit \citep) als auch im Verzeichnis
ITU-R Report 721-2 (mit Jahreszahl) haben. Das ist jetzt so realisiert, dass
ich die entsprechende Angabe in den author-Eintrag gepackt habe, aber das
widerstrebt mir dann doch etwas. Wie sieht denn die kanonische Lösung
dafür aus?

Code:
\begin{filecontents}{literatur.bib}
@manual{ITU721,
    author = {{ITU-R Report 721-2}},
    organization = {International Telecommunications Union},
    title = {{Attenuation by hydrometeors, in particular
            precipitation, and other atmospheric particles}},
    year = 1986,
    address = {Geneva, Switzerland}
}
\end{filecontents}
\documentclass{scrartcl}
\RequirePackage[style=authoryear,sorting=nyt,natbib]{biblatex}
\addbibresource{literatur.bib}
\begin{document}
\citep{ITU721}

\printbibliography
\end{document}