1

I'm trying to get rid of the space between volume and number, and it actually worked with this:

\documentclass[12pt, oneside]{article}

\usepackage[backend = biber, bibencoding=utf8, style=authoryear-comp, uniquename=false]{biblatex}
\addbibresource{bibliography.bib}
\renewbibmacro*{volume+number+eid}{
 \printfield{volume}
 \printfield{number}
 \setunit{\addcomma\space}
 \printfield{eid}}
 \DeclareFieldFormat[article]{number}{\mkbibparens{#1}}
 \DeclareFieldFormat[article]{pages}{#1}
 \printbibliography

\usepackage{filecontents} 
\begin{filecontents}{bibliography.bib}
    @Article{Ratcliff,
       author  = {R. Ratcliff and G. McKoon},
       title   = {The diffusion decision model: Theory and data for two-choice decision tasks},
       journal = {Neural Computing and Applications},
       year    = {2008},
       volume  = {20},
       number  = {4},
       pages   = {873-922},
       }

\end{filecontents}

I don't know what happened, but it doesn't work anymore. Any ideas?

Torbjørn T.
  • 206,688
Cathy
  • 61

0 Answers0