I have just switched from natbib to biblatex, and I am trying to restore some of the previous layouts. I have this import now:
\usepackage[natbib=true,style=verbose-ibid,isbn=false]{biblatex}
which gives me the citation style I want. However, for journals the bibliography style changed in an unfortunate way. Before it looked like this:
Charles, D. (1965), ‘Entr’acte: “Formal” or “Informal” Music?’, The Musical Quarterly 51(1), 144–165.
Now it looks like this (I managed to get rid of the "In:"):
Charles, Daniel. “Entr’acte: “Formal” or “Informal” Music?”, The Musical Quarterly 51.1, pp. 144–165.
I would like to keep a few things from the new style, like full first name, but otherwise revert to the natbib style, with date in the front, title in single inverted commas, volume in bold and number parantheses. Like this:
Charles, Daniel (1965), ‘Entr’acte: “Formal” or “Informal” Music?’, The Musical Quarterly 51(1), pp. 144–165.
How would I achieve this?
EDIT
I managed to get the year in the beginning by using diverging citation and bibliography styles:
\usepackage[natbib=true,citestyle=verbose-ibid,isbn=false,bibstyle=authoryear]{biblatex}
I followed the answer to this question. I can use
\DeclareFieldFormat[article]{volume}{\textbf{#1}}
\DeclareFieldFormat[article]{number}{(#1)}
to make the volume bold and put the number in parentheses. But several macros don't exist here. I had to use \textbf instead of \mkbibbold (unknown macro).
Moreover, I can't disappear the point between volume and number, now it's
Charles, Daniel (1965), “Entr’acte: “Formal” or “Informal” Music?” The Musical Quarterly 51.(1), pp. 144–165.
If I try
\renewbibmacro*{volume+number+eid}{%
\setunit*{\addcomma\space}% NEW
\printfield{volume}%
% \setunit*{\adddot}% DELETED
\setunit*{\addcomma\space}% NEW
\printfield{number}%
\setunit{\addcomma\space}%
\printfield{eid}}
I get this error:
LaTeX error: \abx@macro@cite:labelyear+extrayear undefined.

\mkbibboldis defined inbiblatexv1.7, your version is perhaps outdated, which may also be the reason for other errors. – lockstep May 15 '12 at 00:40