I've just started using biblatex and biber to compile my bibliographies. Everything is great, except I'm having two problems: (1) I want to get rid of the issue number for journal articles; and (2) I don't want the volume number for journal articles to be in italics.
I've found a solution to the first problem, I just have to have the following command in the preamble:
\AtEveryBibitem{\clearfield{number}}
My question is: is there a similarly simple fix for de-italicising the volume numbers?
Thanks for the help!
(I use Mendeley as my reference manager, so I can't mess around with my .bib file)
Here's a MWE:
\usepackage{calc}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{ebgaramond}
\usepackage[style=apa, natbib=true, doi=false, url=false]{biblatex}
\addbibresource{/Users/James/Documents/library.bib}
\AtEveryBibitem{\clearfield{number}}
\setlength\bibitemsep{1.5\itemsep}
\title{Customising My Bibliography}
\date{\vspace{-8ex}}
\begin{document}
\maketitle
\noindent Hello, I want to cite \citet{Steinberger2016, Steinberger2019b} without the volume number in the bibliography being italicised.
\printbibliography
\end{document}
And here's what it outputs:


biblatexstandard styles and no additional configuration) the volume is not italicised. So either there is some manual markup in your.bibfile or you use a style that italicises thevolume. Please show us a short example document (an MWE: https://tex.meta.stackexchange.com/q/228/35864) that reproduces what you are seeing at the moment so we can see what is going on and so we can suggest a suitable solution. – moewe Nov 27 '19 at 21:23\documentclass, so if we copy and paste it into an empty document the code will not run as expected. It also calls a file/Users/James/Documents/library.bibthat we don't have. If you need specific entries from your.bibfile, please post them here as well. If you can live with generic entries frombiblatex-examples.bib, use that (see the MWE in my answer). (The MWE was also not completely minimal, since it loads packages likeebgaramondthat aren't needed, but that is OK.) – moewe Nov 28 '19 at 20:07