按顺序对引文进行排序的最简单的解决方案是什么?目前我的显示为 [1] 然后 [5] 然后 [4]..... 很多帖子询问同样的问题,但对我不起作用。我的代码如下。我使用 natbib。
\documentclass[pdftex,12pt,a4paper]{report}
\usepackage{titlesec}
\titleformat{\chapter}{\bfseries\huge}{\thechapter.}{20pt}{\huge}
\usepackage[top=3cm, bottom=3cm, left=3.5cm, right=3cm]{geometry}
% graphics images
\usepackage[pdftex]{graphicx}
\usepackage[toc,page]{appendix}
\usepackage{slashbox}
% 1.5 line spacing
\usepackage{setspace}
\usepackage{tabu}
\usepackage{tabularx}
\onehalfspacing
% maths symbols
\usepackage{amsmath}
%\usepackage[math-style = upright]{unicode-math}
% table package
\usepackage{multirow}
% citation style
\usepackage[colorlinks=true,linkcolor=blue]{hyperref}%
\makeatletter
\let\Hy@linktoc\Hy@linktoc@none
\makeatother
\usepackage[square,sort,comma,numbers]{natbib}
\usepackage{amsfonts}
%\renewcommand{\chaptername}{}
\usepackage{tikz,colortbl}
\usetikzlibrary{calc}
\usepackage{zref-savepos}
\usepackage[bf,small,tableposition=top]{caption}
\usepackage{subfig}
\usepackage{float}
\usepackage{url}
\usepackage{pdfpages}
\begin{document}
% cover
%\input{cover_report.tex}
\includepdf[pages=1]{CoverPage}
% title page
%\input{title_report.tex}
% abstract
\setcounter{page}{1}
\pagenumbering{roman}
\input{abstract.tex}
% acknowledgement
\input{acknowledgements.tex}
% table of content
\tableofcontents
\addcontentsline{toc}{chapter}{Contents}
% list of tables
%\listoftables
%\addcontentsline{toc}{chapter}{List of Tables}
% list of figures
%\listoffigures
%\addcontentsline{toc}{chapter}{List of Figures}
% intro chapter
\cleardoublepage
\pagenumbering{arabic}
\input{intro.tex}
\input{literature.tex}
\input{dataset.tex}
%\input{propose.tex}
\input{module_design.tex}
\input{training.tex}
\input{results.tex}
\input{conclusion.tex}
% references
%\bibliographystyle{plainnat}
\bibliographystyle{ksfh_nat}
\bibliography{fyp}
% appendix
%\input{appendix.tex}
\end{document}