请提供一个完整的可编译的文档例子,例如format.cls
具体是什么,只提供一个切片很难回答这一问题。
由于你没有给完整的模板,相当于给了本回答很大的自由度
一个基于natbib
的例子如下,需要使用pdf-bibtex-pdf-pdf
或者latexmk -pdf
命令编译:
\documentclass{article}
\begin{filecontents*}[overwrite]{reference.bib}
@article{1966Calculation,
author = {AAAA},
year = {1966},
title = {Calculation of the Influence of the Earth's Magnetic Field on the Magnetic Field of the Moon},
}
@article{1972Influence,
author = {BBBB},
year = {1972},
title = {The Influence of Earth's Magnetic Field in Exploring the world},
}
@article{2000The,
author = {CCCC},
year = {2000},
title = {The The The The paper named The The The},
}
\end{filecontents*}
\usepackage[numbers,sort&compress]{natbib}
\bibliographystyle{unsrtnat}
\begin{document}
I want to cite these papaer at here\cite{1966Calculation,1972Influence,2000The} but not there!
\bibliography{reference}
\end{document}
Updated20250306
根据我自己给自己做的MWE(真是有够好笑了呢)
\documentclass[12pt,a4paper,openany,twoside]{ctexbook}
\usepackage{geometry}
\begin{filecontents*}[overwrite]{paper.bib}
@article{1966Calculation,
author = {AAAA},
year = {1966},
title = {Calculation of the Influence of the Earth's Magnetic Field on the Magnetic Field of the Moon},
}
@article{1972Influence,
author = {BBBB},
year = {1972},
title = {The Influence of Earth's Magnetic Field in Exploring the world},
}
@article{2000The,
author = {CCCC},
year = {2000},
title = {The The The The paper named The The The},
}
\end{filecontents*}
\usepackage[numbers,sort&compress]{natbib}%加上这一行即可...
\paperheight=15cm % 只是为了截图在同一张图内
\begin{document}
\tableofcontents
\chapter{绪\quad 论}
\section{标题}
\subsection{副标题}
这是引用\cite{1966Calculation,1972Influence,2000The}的结果——我想我能吞下玻璃而不伤身体。
\bibliographystyle{gbt7714-2005}
\bibliography{paper.bib}
\addcontentsline{toc}{chapter}{参考文献}
\end{document}
遇到模板给定了一大段设置的同时,在不确定很具体的依赖关系的时候,要给出上面的MWE实际上是相对困难而且花时间的,所以,最好不要修改模板,模板这样的设置"应该"是符合贵校规范的。
在看不懂模板设置的前提下,把这个问题定位并且抽象出来对直接套用模板(使用时间尚短)的用户来说简直就是一场灾难,基本上无解。
但是上面的简化又是必要的,不要期望有人会帮你看大段的模板,提问必须提供完整的可编译的代码(MWE),不然不应该提问。
BTW,你是否看过基础教程lshort-zh-cn
的6.1节....
问 使用bst自动模式引入参考文献,如何实现文献的连续引用