0

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:

enter image description here

to:

enter image description here

aan
  • 2,663

1 Answers1

1

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.

No colon after "in"

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}

"In:" with colon

moewe
  • 175,683
  • thanks. Brillant! Any idea about Author A and Author B (2017). Title to Author 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
  • @aan \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
  • @aan Generally I would urge you to ask a new question, but this would be pretty much a duplicate of https://tex.stackexchange.com/q/28892/35864, so you don't need to bother in this case. Of course you should ask a new question if my suggestions don't work. – moewe Sep 20 '19 at 14:28