寻找合适的围兜款式

寻找合适的围兜款式

我对 BibLaTex 还很陌生。我需要这样一种引用方式:

热带气旋(TC),指飓风、台风、热带风暴和较弱的热带低气压(Vitart 等,1997 年)。

参考

[1] Vitart, F.、JL Anderson 和 WF Stern,1997:GCM 积分集合中热带风暴频率年际变化的模拟。《气候杂志》,10,745–760。

我应该使用哪种围兜样式?我没有找到符合我要求的款式。

多谢!

PS 总结一下,我想引用的风格应该是

文本(作者,2015 年)

参考

[#] 作者,2015 年。文章名。期刊名称....

这可能最有可能是 BibLaTex 中的 authoryear。但我仍然不知道如何使用它。这是我的代码。

\documentclass[11pt,a4paper]{article}
\usepackage[bibstyle=authoryear,citestyle=authoryearbrak]{biblatex}
\begin{document}
   Tropical cyclones (TCs), referring to hurricanes, typhoons, tropical storms, and weaker tropical depressions \parencite{Bengtsson-L.:1982aa}. 

\addbibresource{2016MOST_Paper_JRA25TC_20160201.bib} 
\printbibliography
\end{document}

但这不是工作。我在工作中使用 BibDesk。

答案1

由于我们没有 *.bib 文件的内容,因此您的 MWE 毫无用处。我猜您需要将参考书目解析器切换为“biber”。您的 MWE 是否适用于以下调整?

\usepackage[bibstyle=authoryear,citestyle=authoryearbrak,backend=bibtex]{biblatex}

如果是,你应该将编辑器的参考书目工具更改为 biber,并将

backend=bibtex

backend=biber

相关内容