I need to change the order of the fields in my bibliography. Currently, any entry for a book I have is displayed as:
City: Publisher.
I want to change it to
Publisher: City.
Given a tex file as follows:
\documentclass{article}
\usepackage[style=numeric, firstinits=true, maxbibnames=99, minbibnames=1, backend=bibtex8]{biblatex}
\bibliography{mybib}
\begin{document}
hello world \cite{Ab_Steg}
\printbibliography
\end{document}
And the .bib file as follows:
@BOOK{Ab_Steg,
author = "M. Abramowitz and I. A. Stegun",
title = {Handbook of mathematical functions},
publisher = "Dover publications",
year = "1965",
language="English",
address="New York"
}
The result is:

I want the position of "Dover publications" and "New York" to switch.
