With biblatex, alphabetic style, I have
<author>. <title>
But I want to have a colon ":" instead of the period "." after the author:
<author>: <title>
What do I have to change?
With biblatex, alphabetic style, I have
<author>. <title>
But I want to have a colon ":" instead of the period "." after the author:
<author>: <title>
What do I have to change?
Put the following in your preamble after having loaded biblatex
\renewcommand{\labelnamepunct}{\addcolon\space}
(This is better than \renewcommand{\labelnamepunct}{:\addspace}, as remarked by domwass.)
Update
The \labelnamepunct command is currently deprecated and the context dependent
\DeclareDelimFormat[bib]{nametitledelim}{\addcolon\space}
should be used. However, old styles may still be using \labelnamepunct, so the original answer has been kept. (Thanks to moewe for recalling to update.)
\renewcommand{\labelnamepunct}{\addcolon\space}, because then unintended whitespace before the colon will be deleted.
– domwass
Sep 19 '11 at 12:09
verbose style as well. Question: The \labelnamepunct will only be executed after the author entry and nowhere else?
– doncherry
Jan 07 '12 at 15:23
biblatex defines many "punct" commands, so I guess this is specialized for that purpose.
– egreg
Jan 07 '12 at 15:47
\renewcommand{\newunitpunct}{\addcomma\addspace} %\renewcommand{\newblockpunct}{,\addspace} %\renewcommand{\finentrypunct}{,\addspace} (This is what I was lookin for, yay)
– droid192
May 26 '16 at 14:01