如何将标点符号 (In) 更改为 (In:) 以引用已编辑书籍中的章节

如何将标点符号 (In) 更改为 (In:) 以引用已编辑书籍中的章节

我正在使用在此处输入链接描述我需要在一本编辑过的书中引用一个章节。

我们如何才能改变其中的一些punctuation

我需要改变:

In

In:

基本上:

在此处输入图片描述

到:

在此处输入图片描述

答案1

链接的问题和答案中的代码包含以下行

\renewcommand*{\intitlepunct}{\space}

正如您在以下简化的 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}

这会导致“in”后面只有一个空格而不是冒号。

“in” 后没有冒号

只需删除该行,您就会得到预设值\addcolon\space,它会给您一个冒号。

\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:” 带冒号

相关内容