我是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书目文件的示例
@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命令。
\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}发布于 2022-02-24 21:41:56
您使用的是bibtex而不是biblatex,因此您需要使用不太灵活的year字段而不是date字段:
@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}
}https://stackoverflow.com/questions/71258406
复制相似问题