如何使用 biblatex 重现参考书目风格?

如何使用 biblatex 重现参考书目风格?

我浪费了几个小时,尝试了很多方法,但仍然无法达到期刊编辑想要的完美匹配。以下是所需样式的图片:期刊中列出的参考文献

到目前为止,我可以使用此 MWE 来管理一些结果。

\documentclass{article}
\usepackage[british]{babel}
\usepackage{csquotes}
\usepackage{hyperref}
\usepackage[natbib=true,%
            backref=true,%
            backend=biber,%
            style=ext-authoryear,%
            articlein=false,%
            giveninits=true,%
            maxbibnames=9,maxcitenames=2,%
            uniquelist=false]{biblatex}

\DeclareFieldFormat[article]{volume}{Vol. #1}
\DeclareFieldFormat[article]{number}{\addnbspace No. #1}
\DefineBibliographyStrings{english}{
    andothers = {\mkbibemph{et\addabbrvspace al\adddot}}
}
\renewcommand{\nameyeardelim}{,}

%\addbibresource{../Xbib.bib}

\RequirePackage{filecontents}
\begin{filecontents}{mybib1.bib}
%
@Article{bru30,
  author       = {Jean-Louis Bertrand and Xavier Brusset},
  title        = {Managing the financial consequences of weather variability},
  journal      = {Journal of Asset Management},
  journaltitle = {Journal of Asset Management},
  year         = {2018},
  date         = {2018-07-16},
  volume       = {19},
  issue        = {5},
  pages        = {301-315},
  doi          = {10.1057/s41260-018-0083-x},
  file         = {:Managing the financial consequences of weather variability_JAM.pdf:PDF},
  groups       = {Meteo},
  owner        = {XB},
}

@Article{laz1,
  author    = {J. K. Lazo and M. Lawson and P. H. Larsen and D. M. Waidmann},
  title     = {U.{S}. economic sensitivity to weather variability},
  journal   = {Bulletin of American Meteorological Society},
  year      = {2011},
  volume    = {92},
  pages     = {709-720},
  groups    = {Meteo},
  owner     = {XB},
  timestamp = {2013.11.12},
}
\end{filecontents}

\begin{document}
This document must be compiled after having defined the bibtex command to  \texttt{biber.exe}.

Minimum working example where using \parencite{bru30}. When there are various authors to a paper: \parencite{laz1}.


\printbibliography
\end{document} 

从输出结果可以看出,有几处不正确。名字的首字母应始终位于姓氏后面,不应有日期和出版年份,年份后的句号应为逗号,文章标题应位于引号之间,标题和期刊之间的分隔符应为逗号。doi 前面应为“available at:” 这是哪种样式?我该如何模仿?谢谢。

答案1

无论如何,以下是我尝试过的解决方法,以便尽可能地模仿我打算提交给的期刊的参考文献风格:

\documentclass{article}
\usepackage[british]{babel}
\usepackage[style=english]{csquotes}
\usepackage{hyperref}
\usepackage[natbib=true,%
            backref=true,%
            backend=biber,%
            style=ext-authoryear,%
            articlein=false,%
            giveninits=true,%
            maxbibnames=9,maxcitenames=2,%
            uniquelist=false]{biblatex}
\DeclareFieldFormat[article]{volume}{\addnbspace Vol. #1}
\DeclareFieldFormat[article]{issue}{\addnbspace No. #1}
\DeclareFieldFormat[article]{number}{\addnbspace No. #1}
\DeclareFieldFormat[article]{journal}{ #1\addcomma}
\DeclareFieldFormat{issuedate}{#1}
\DefineBibliographyStrings{english}{
    andothers = {\mkbibemph{et\addabbrvspace al\adddot}}
}
\DeclareNameAlias{sortname}{family-given}
%\renewcommand{\nameyeardelim}{,}
\renewcommand{\newunitpunct}{\addcomma\space}
\renewcommand{\jourvoldelim}{\addcomma}
%\renewcommand{\postvolpunct}{\addcomma} % for biblatex-chicago only

\addbibresource{myXbib.bib}

\RequirePackage{filecontents}
\begin{filecontents}{myXbib.bib}

@Article{bru30,
  author       = {Jean-Louis Bertrand and Xavier Brusset},
  title        = {Managing the financial consequences of weather variability},
  journal      = {Journal of Asset Management},
  journaltitle = {Journal of Asset Management},
  year         = {2018},
  date         = {},
  volume       = {19},
  issue        = {5},
  pages        = {301-315},
  doi          = {10.1057/s41260-018-0083-x},
  file         = {:Managing the financial consequences of weather variability_JAM.pdf:PDF},
  groups       = {Meteo},
  owner        = {XB},
}

@Article{laz1,
  author    = {J. K. Lazo and M. Lawson and P. H. Larsen and D. M. Waidmann},
  title     = {U.{S}. economic sensitivity to weather variability},
  journal   = {Bulletin of American Meteorological Society},
  year      = {2011},
  volume    = {92},
  pages     = {709-720},
  groups    = {Meteo},
  owner     = {XB},
  timestamp = {2013.11.12},
}
\end{filecontents}

\begin{document}
\DeclareDatamodelEntryfields[article ]{issue}
\DeclareFieldFormat{no}{\bibsstring{number}~#1}
This document must be compiled after having defined the bibtex command to  \texttt{biber.exe}.

Minimum working example where using \parencite{bru30}. When there are various authors to a paper: \parencite{laz1}.
K\oe nig is the author of various books and articles, \parencite[see][ for an example]{koe1}, \cite{boiral_2006}.

Some citation alternative uses: \citeauthor{koe1} says in \citeyear{koe1}, this is what is expected. Does foot citation possibility work \footcite{simon_1996}?

\printbibliography
\end{document}

输出为: 在此处输入图片描述

请注意我必须通过重新定义问题编号的列出方式来删除问题编号周围的括号:

\DeclareFieldFormat{no}{\bibsstring{number}~#1}

我希望这对某些人有帮助。我花了好几天才得到这个结果。

相关内容