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}

これが誰かの役に立つことを願います。この結果を得るのに数日かかりました。

関連情報