首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >未出现在已编译LaTeX文档末尾的参考文献列表中的出版物年份,使用书目类型{naturemag}

未出现在已编译LaTeX文档末尾的参考文献列表中的出版物年份,使用书目类型{naturemag}
EN

Stack Overflow用户
提问于 2022-02-24 21:21:57
回答 1查看 89关注 0票数 1

我是LaTex新手,所以我用背页来创建我的引文。我的书目风格是自然的。

我的参考资料不包括在参考名单中的出版年份。

下面是我看到的输出的一个例子。

引用了这1,2

参考文献

1爪,K.等。加强与土著社区的伦理基因组研究的框架。自然通讯9,2957。URL https://doi.org/10.1038/s41467-018-05188-3.

2 Tsosie,K.,Yracheta,J.,Kolopenuk,J. & Smith,R.生物人类学中的土著数据主权和数据共享。“美国身体人类学杂志”174,183-186。URL https://doi.org/10.1002/ajpa2484.1

下面是我的bib.bib书目文件的示例

代码语言:javascript
复制
@article{claw2018a,
  author = {Claw, K.G. and Anderson, M.Z. and Begay, R.L. and Tsosie, K.S. and Fox, K. and Garrison, N.A. and Consortium, S.internship for In peoples in G.},
  title = {A framework for enhancing ethical genomic research with Indigenous communities},
  volume = {9},
  pages = {2957},
  url = {https://doi.org/10.1038/s41467-018-05188-3},
  doi = {10.1038/s41467-018-05188-3},
  language = {en},
  journal = {Nature Communications},
  number = {1},
  date = {2018}
}
@article{tsosie2021b,
  author = {Tsosie, K.S. and Yracheta, J.M. and Kolopenuk, J.A. and Smith, R.W.},
  date = {2021},
  title = {Indigenous data sovereignties and data sharing in biological anthropology},
  volume = {174},
  pages = {183–186},
  url = {https://doi.org/10.1002/ajpa2484},
  doi = {10.1002/ajpa2484},
  language = {en},
  journal = {American Journal of Physical Anthropology},
  number = {2}
}

下面是我正在运行的LaTeX命令。

代码语言:javascript
复制
\documentclass{article}
\usepackage[utf8]{inputenc}

\title{paper}
\author{author}
\date{February 2022}

\begin{document}

\maketitle


Cite these \cite{claw2018a,tsosie2021b} 

\bibliographystyle{naturemag}
\bibliography{bib.bib}
\end{document}
EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2022-02-24 21:41:56

您使用的是bibtex而不是biblatex,因此您需要使用不太灵活的year字段而不是date字段:

代码语言:javascript
复制
@article{claw2018a,
  author = {Claw, K.G. and Anderson, M.Z. and Begay, R.L. and Tsosie, K.S. and Fox, K. and Garrison, N.A. and Consortium, S.internship for In peoples in G.},
  title = {A framework for enhancing ethical genomic research with Indigenous communities},
  volume = {9},
  pages = {2957},
  url = {https://doi.org/10.1038/s41467-018-05188-3},
  doi = {10.1038/s41467-018-05188-3},
  language = {en},
  journal = {Nature Communications},
  number = {1},
  year = {2018}
}
@article{tsosie2021b,
  author = {Tsosie, K.S. and Yracheta, J.M. and Kolopenuk, J.A. and Smith, R.W.},
  year = {2021},
  title = {Indigenous data sovereignties and data sharing in biological anthropology},
  volume = {174},
  pages = {183–186},
  url = {https://doi.org/10.1002/ajpa2484},
  doi = {10.1002/ajpa2484},
  language = {en},
  journal = {American Journal of Physical Anthropology},
  number = {2}
}
票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/71258406

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档