这是他们所需风格的样本。
- 这种风格有特定的名称吗?
- 如果不是,那么需要对数字样式进行哪些修改
biblatex
才能与显示的样式相匹配?
我认为的要求如下
期刊
- 作者姓名最多为 3 位。在此数字之后,他们使用 bibstring
andothers
作为 et al,并在其前面加逗号 - 仅出版年份显示在作者姓名后的括号内
- 期刊名称采用斜体,后面是非斜体卷名和页名,如下所示
期刊名称 卷: 起始页-终止页。
图书
- 作者姓名和年份之间有一个逗号
Serrin J, (1971)
- 书名以斜体显示,后面为版本
- 当书中每个章节都有作者和主要作者时。章节名称不为斜体,而主要作者姓名位于主要书名之前
- 出版城市、出版社名称及页数如下
纽约:Academic Press,35–75
在线内容
- 以标题开头,后跟逗号和年份
- 提供链接为
可从以下网址获取:链接(等宽黑色字体)
\begin{filecontents*}{\jobname.bib}
@article{ciarreta2017modeling,
title={Modeling and forecasting realized volatility in German--Austrian continuous intraday electricity prices},
author={Ciarreta, Aitor and Muniain, Peru and Zarraga, Ainhoa},
journal={Journal of Forecasting},
volume={36},
number={6},
pages={680--690},
year={2017},
publisher={Wiley Online Library}
}
@inproceedings{bokde2017pattern,
title={Pattern sequence similarity based techniques for wind speed forecasting},
author={Bokde, N and Troncoso, A and Asencio-Cort{\'e}s, G and Kulat, K and Mart{\'\i}nez-{\'A}lvarez, F},
booktitle={Proceedings of the International Work-Conference on Time Series, Granada, Spain},
volume={2},
pages={786--794},
year={2017}
}
\end{filecontents*}
\documentclass{article}
\usepackage[backend=biber]{biblatex}
\bibliography{\jobname.bib}
\begin{document}
\nocite{*}
\newrefcontext[sorting=ydnt]
\printbibliography[heading=subbibliography]
\end{document}