我正在撰写一篇期刊论文,希望将数据集列在参考文献中
[数据集] 作者;年份;数据集标题;数据存储库或档案;版本(如果有);持久标识符(例如 DOI),
其中开头的“[dataset]”是文字。其他参考文献(文章、书籍等)的类型不需要以这种方式添加前缀。
我的书目文件名为 mybibfile.bib,内容如下
@article{gross2010multi,
title={Multi-pie},
author={Gross, Ralph and Matthews, Iain and Cohn, Jeffrey and Kanade, Takeo and Baker, Simon},
journal={Image and Vision Computing},
volume={28(5)},
number={5},
pages={807--813},
year={2010},
publisher={Elsevier}
}
我的 LaTex 代码使用 bibtex。请给出你的建议。我的 LaTex 代码是
\documentclass[review]{elsarticle}
\usepackage{array}
\bibliographystyle{model5-names}
\biboptions{authoryear}
\begin{document}
\begin{frontmatter}
\title{xyz}
\author{abc}
\corref{mycorrespondingauthor}
\cortext[mycorrespondingauthor]{Corresponding author}
\address{Research Scholar,}
\ead{[email protected]}
\begin{abstract}
jhjasvhjsh hjshjhjvhjsvh jjkjbkjbkjk jvkjvzjvkjvkj
\end{abstract}
\begin{keyword}
abc \sep xyz.
\end{keyword}
\end{frontmatter}
\section{Introduction}
Text-only mode can also be used for someone who is blind or hard of seeing and only needs the text read to them \citep{gross2010multi}.
\bibliography{mybibfile}
\end{document}