这里我们使用的是BibTeX的引用格式,因此文件中应包括两个文件(.bib-参考文献 和 .bst-文献格式)。
有了这两个文件后,我们在bib文件中创建参考文献:(注意,作者的名字是逗号前为姓,逗号后为名,and连接两个作者)
@article{1,
Author = {Zhang, Bin and Li, Shaoyu and Gu, Chen and Zhao, Mengli and Zou, Junming and Duan, Hongmei and Liu, Haojie and Li, Jianguo},
Title = {Biomass Allocation of Four Dominant Plant Species in Inner Mongolia Desert Grasslands in Response to Different Grazing Intensities},
Journal = {Acta Agrectir Sinica},
Pages = {1-14},
DOI = {10.11733/j.issn.1007-0435.2022.12.022},
volume = 30,
number = 12,
Year = {2022}}
然后我们需要在主文件(.tex)中进行引用:
\usepackage{cite} % 加在文章最开头,表示你这篇文章要引用别的东西。
% 下面两个放在文章最后(\end{document}之前)
\bibliographystyle{参考文献格式的文件名}
\bibliography{bib文件的文件名} % 这一句放在哪里参考文献就会显示在哪里,所以让放在文章最后。
然后在正文中,需要引用参考文献的地方写\cite{代称}
,
代称就是bib文件中自定义的那个(这里对应的示例中的 1 就是)。如果需要上标,则外边嵌套一个\textsuperscript{}
实现参考文献上标。
对于正文中的引用样式,我们可以在.bst文件中找到,即
完整的例子:
\documentclass[]{interact}
\usepackage{cite}
\begin{document}
这里是参考文献引用 \citep{1}
\bibliographystyle{tfcad}
\bibliography{interactcadsample}
\end{document}