尝试按文本顺序获取参考文献,但我所做的一切似乎都没有改变任何东西

尝试按文本顺序获取参考文献,但我所做的一切似乎都没有改变任何东西

文档

 \documentclass{tudelft-report}

 \usepackage[numbers,sort&compress]{natbib}
 \bibliographystyle{unsrtnat}

 \begin{document}


 \bibliographystyle{unsrtnat}
 \bibliography{report}


 \end{document}

报告.bib

    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    % A part of the report.bib doc
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

     @article{Guo2018,
     abstract = {Alkoxy},
     author = {Guo, Jing Jing and Hu, Anhua and Zuo, Zhiwei},
     doi = {10.1016/j.tetlet.2018.04.060},
     file = {:Users/gebruiker/Documents/BEP/Papers/ Photocatalytic          alkoxy radical-mediated transformations.pdf:pdf},
     issn = {18733581},
     journal = {Tetrahedron Letters},
     keywords = {Alkoxy radical,C–H functionalization,Hydrogen atom          transfer,Photoredox catalysis,$\beta$-Scission},
     number = {22},
     pages = {2103--2111},
     title = {{Photocatalytic alkoxy radical-mediated          transformations}},
     volume = {59},
     year = {2018}
     }
     @article{Liu2010,
     abstract = {Generation-4 polyamidoamine (PAMAM).},
     author = {Liu, Huajie and T{\o}rring, Thomas and Dong, Mingdong and Rosen, Christian B. and Besenbacher, Flemming and Gothelf, Kurt V.},
     doi = {10.1021/ja109677n},
     file = {:Users/gebruiker/Documents/BEP/Papers/DNA-Templated Covalent Coupling of G4 PAMAM Dendrimers.pdf:pdf},
     issn = {00027863},
     journal = {Journal of the American Chemical Society},
     number = {51},
     pages = {18054--18056},
     title = {{DNA-templated covalent coupling of G4 PAMAM          dendrimers}},
     volume = {132},
     year = {2010}
     }
     @article{Sioda1968,
     abstract = {The visible spectra of the free radical.},
     author = {Sioda, R. E.},
     doi = {10.1021/j100853a007},
     file = {:Users/gebruiker/Documents/BEP/Papers/Electrolytic Oxidation of 9,10-Diphenylanthracene and Properties of Its Free Radical Cation and Anion.pdf:pdf},
     issn = {00223654},
     journal = {Journal of Physical Chemistry},
     number = {7},
     pages = {2322--2330},
     title = {{Electrolytic oxidation of 9,10-diphenylanthracene and properties of its free radical cation and anion}},
     volume = {72},
     year = {1968}
     }

我尝试使用 biblatex、natbib、bibliographystyle{ieetr},但没有任何改变按字母顺序排列的效果。我使用 Mendely 在 report.bib 文件中制作的 bibtex 文件是否有问题?

答案1

如果我修改你的源代码,使它使用report类,只有一个\bibliography命令,并且有一些\cite要测试,那么我得到

在此处输入图片描述

它按引用顺序而不是字母顺序显示参考文献。

\documentclass{report}

 \usepackage[numbers,sort&compress]{natbib}
 \bibliographystyle{unsrtnat}

 \begin{document}


first cite:   \cite{Sioda1968}

second cite:     \cite{Guo2018}


 \bibliography{report}


 \end{document}

如果您看到不同的行为,请编辑问题以显示演示错误顺序的测试文件。

相关内容