I am using the MWE from enter link description here where I need to cite a book chapter in an edited book.
How can we change some of the punctuation?
I need to change from:
In
to
In:
Basically:
to:
I am using the MWE from enter link description here where I need to cite a book chapter in an edited book.
How can we change some of the punctuation?
I need to change from:
In
to
In:
Basically:
to:
The code in the linked question and answer contains the line
\renewcommand*{\intitlepunct}{\space}
As you can see in the following reduced MWE
\documentclass[british]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[style=authoryear, backend=biber]{biblatex}
\renewcommand*{\intitlepunct}{\space}
\addbibresource{biblatex-examples.bib}
\begin{document}
\cite{sigfridsson,pines}
\printbibliography
\end{document}
this causes the "in" to be followed only by a space and not by a colon.
Simply remove that line and you will get back the preset value of \addcolon\space, which gives you a colon.
\documentclass[british]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[style=authoryear, backend=biber]{biblatex}
\renewcommand*{\intitlepunct}{\space}
\addbibresource{biblatex-examples.bib}
\begin{document}
\cite{sigfridsson,pines}
\printbibliography
\end{document}
Author A and Author B (2017). TitletoAuthor A and Author B (2017) Title. To delete the.punctuation after the year. Should I ask a new question? – aan Sep 20 '19 at 14:25\DeclareDelimFormat[bib]{nametitledelim}{\addspace}or if that doesn't work because you are using an outdated system\renewcommand*{\labelnamepunct}{\addspace}. – moewe Sep 20 '19 at 14:26