在 biblatex 中将标题和作者姓名后的点替换为逗号

在 biblatex 中将标题和作者姓名后的点替换为逗号

我的参考文献有问题,我想用逗号 < , > 替换作者姓名和标题之间的点 < . >。我还想在打印参考文献时用逗号替换标题和期刊名称之间的点。这是我当前的代码:

bibliography.bib

@article{hiller2001developmental,
  title={Developmental regulation of transcription by a tissue-specific TAF homolog},
  author={Hiller, Mark A and Lin, Ting-Yi and Wood, Cricket and Fuller, Margaret T},
  journal={Genes \& development},
  volume={15},
  number={8},
  pages={1021--1030},
  year={2001},
  publisher={Cold Spring Harbor Lab}
}

main.tex

\documentclass{article}
\usepackage[utf8]{inputenc}

\title{test}

\begin{document}

\maketitle

\section{Section}
\cite{hiller2001developmental}

\bibliographystyle{plain} % We choose the "plain" reference style
\bibliography{bibliography} % Entries are in the bibliography.bib file

\end{document}

参考内容为: 围兜

我试图在 之后Fuller以及 之后添加逗号homolog

[13] Mark A Hiller, Ting-Yi Lin, Cricket Wood, and Margaret T Fuller, De-
     velopmental regulation of transcription by a tissue-specific taf homolog,
     Genes & development, 15(8):1021–1030, 2001

相关内容