What do I have to write in the preamble to bring the bibliography to make parentheses around the volume number of an article? I'm using the authoryear style.
Here is an example:
\begin{filecontents}{filename.bib}
@article{Billio.2012,
author = {Billio, Monica and Getmansky, Mila and Lo, Andrew W. and Pelizzon, Loriana},
year = {2012},
title = {Econometric measures of connectedness and systemic risk in the finance and insurance sectors},
pages = {535--559},
volume = {104},
number = {3},
journal = {Journal of Financial Economics}
}
\end{filecontents}
\documentclass{article}
\usepackage[hyperref=true,
maxcitenames=4,
isbn=false,
dashed=false,
style=authoryear,
backend=bibtex,
firstinits=true]{biblatex}
\bibliography{filename.bib}
\begin{document}
\cite{Billio.2012}
\newpage
\renewcommand\refname{List of Literature}
\printbibliography[heading=bibintoc]
\end{document}
Any help is appreciated.

\DeclareFieldFormat[article]{number}{(#1)}in the preamble. – Jörg Nov 05 '12 at 22:39