时间序列分析杂志的引用格式

时间序列分析杂志的引用格式

在用 LaTeX 写稿件时,我被要求使用《时间序列分析杂志》(JTSA)的以下引用样式。我尝试了几种样式(例如,cbe、apa、chicago、abbrvnat),但似乎没有一种是我想要的。有人能告诉我在这种情况下应该使用哪种软件包和样式吗?

Bravo F. 2002. 分块经验 Cressie–阅读检验统计量

答案1

给出的风格示例仅来自期刊文章,这严重影响了风格,但由于这是期刊网页提供的唯一信息,我们将采用它。也许没有人引用其他来源。:)

使用 可以相当简单地完成此操作biblatex。我使用样式中的扩展样式biblatex-ext来简化一些修改。正如 moewe 在评论中指出的那样,biblatex解决方案通常不适用于使用 LaTeX 的期刊提交(即,如果期刊接受 TeX 源文档,则biblatex解决方案可能会导致问题。)

\documentclass{article}
\usepackage[american]{babel}
\usepackage{csquotes}
\usepackage[style=ext-authoryear-comp,
    articlein=false,
    uniquename=init,
    giveninits=true,
    terseinits=true,
    ]{biblatex}

% make volume bold
\DeclareFieldFormat[article,periodical]{volume}{\mkbibbold{#1}}
% remove parentheses from year in bibliography
\DeclareFieldFormat{biblabeldate}{#1}
% remove quotes and pp. from article formatting
\DeclareFieldFormat[article,periodical]{title}{#1}
\DeclareFieldFormat[article,periodical]{pages}{#1}
% strict last-first name order
\DeclareNameAlias{sortname}{family-given}
\renewcommand*{\revsdnamepunct}{}
% colon between volume and pages
\renewcommand*{\bibpagespunct}{\addcolon\addnbspace}
% period at the end of the last name
\DeclareDelimFormat[bib]{nameyeardelim}{\addperiod\space}
% no 'and' in name lists in the bibliography
\DeclareDelimAlias*[bib]{finalnamedelim}[bib]{multinamedelim}
% no issue number
\AtEveryBibitem{\ifentrytype{article}{\clearfield{number}}{}}

\addbibresource{biblatex-examples.bib}
\begin{document}
 \textcite{bertram}

 \textcite{herrmann}
\printbibliography
\end{document}

代码输出

相关内容