在这个有用的邮政biblatex
,我问的是如何使用verbose
。现在,我想稍微自定义一下这个样式,如下所示:
- 城镇名称后面应该用逗号代替冒号。
- 文章标题不应该有撇号。
- 期刊名称前面不能冠以“In”。
简而言之,有什么技巧可以定制这种冗长的样式吗?这是我的 MWE:
\documentclass[12pt,a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage[french]{babel}
\usepackage[backend=biber, style=verbose]{biblatex}
\usepackage{hyperref}
\DeclareDelimFormat[bib]{nametitledelim}{\addcomma\space}
\begin{filecontents}{\jobname.bib}
@book{Winnicott1975,
address = {Paris},
author = {Winnicott, Donald Woods},
publisher = {Éditions Gallimard},
title = {Jeu et réalité},
subtitle = {L'espace potentiel},
year = {1975},
}
@Article{Chiantaretto2005,
author = {Chiantaretto, Jean-François},
title = {À propos de la première transgression},
journal = {Topique},
volume = {92},
number = {3},
pages = {111--125},
year = {2005},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
Some text here \autocite{Winnicott1975} and here too \autocite{Chiantaretto2005}.
\printbibliography
\end{document}