如何将 Biblatex 引用改为我自己的风格?

如何将 Biblatex 引用改为我自己的风格?

我是 Latex (TeXShop 4.25) 的新手,在撰写论文时,我的参考文献出现了一些问题。我使用 biblatexBiber,需要参考文献如下:

作者。(年份)“标题”。期刊;卷(号):页数。

例如:

Baldwin I.、Halitschke R.、Paschold A.、von Dahl CC. 和 Preston CA. (2006) “植物与植物相互作用中的挥发性信号:基因组时代的‘会说话的树’”。Science;311(5762):812-815。

我发现最接近的风格是 authoryear,这是我编写的代码:

\documentclass{article}
\usepackage[backend=biber,
            style=authoryear,
            sorting=nyt,
            sortlocale=de_DE,
            natbib=true,
            url=false,
            doi=false,
            isbn=false,
            maxcitenames=2, 
            maxbibnames=9, 
            eprint=false]
            {biblatex} ç
\addbibresource{References.bib}
\begin{document}
\cite{baldwin06}
\printbibliography
\end{document}

以下是程序打印的内容:

Baldwin, IT、Halitschke R.、Anja P.、von Dahl CC 和 Preston CA (2006)。植物-植物相互作用中的挥发性信号:基因组学时代的会说话的树。Science 311,5762,第 812-815 页。

你可能注意到我想

  • 删除第一个逗号(“Baldwin, IT”),
  • 将标题放在双引号中,
  • 在日记后面加一个分号,
  • 在体积后的括号中打印数字,然后
  • 在页面前显示冒号。

有人知道如何定制这个参考吗?

答案1

这是一个解决方案:

\documentclass{article}
\usepackage{filecontents}
\begin{filecontents}{References.bib}
    @article{baldwin06,
    Author = {Baldwin, I. and Halitschke, R. and Paschold, A. and von Dahl, C.C. and Preston, C.A.},
    Journal = {Science},
    Number = {5762},
    Pages = {812--815},
    Title = {Volatile signaling in plant–plant interactions:‘talking trees’ in the genomics era},
    Volume = {311},
    Year = {2006}}
\end{filecontents}
% Baldwin I., Halitschke R., Paschold A., von Dahl CC. y Preston CA. (2006) “Volatile signaling in plant–plant interactions:‘talking trees’ in the genomics era”. Science; 311(5762):812-815.

\usepackage[backend=biber,
            style=authoryear,
            sorting=nyt,
            sortlocale=de_DE,
            natbib=true,
            url=false,
            doi=false,
            isbn=false,
            maxcitenames=2,
            maxbibnames=9,
            eprint=false]
            {biblatex}
\addbibresource{References.bib}

\usepackage{xpatch}

 \xpatchbibdriver{article}{%
  \usebibmacro{in:}}{}{}{}

\xpatchbibmacro{journal+issuetitle}{%
  \setunit*{\addspace}}{%
  \setunit*{\addsemicolon\addspace}}{}{}

\DeclareFieldFormat[article,periodical]{number}{\mkbibparens{#1}}% number of a journal

\DeclareFieldFormat[article,periodical]{pages}{#1}

\renewbibmacro*{volume+number+eid}{%
  \printfield{volume}%
  \setunit*{\space}%
  \printfield{number}%
  \setunit{\addcomma\space}%
  \printfield{eid}}

\renewbibmacro*{note+pages}{%
  \printfield{note}%
  \setunit{\addcolon\addspace}%
  \printfield{pages}%
  \newunit}

\begin{document}

\cite{baldwin06}
\printbibliography

\end{document}

在此处输入图片描述

相关内容