[sorting=none]{biblatex} 在我的 Texstudio 中不起作用

[sorting=none]{biblatex} 在我的 Texstudio 中不起作用

我在 biblatex 中添加了 [sorting=none] 但是当我进行 pdf + biber + 2x pdflatex 编译时,参考书目并没有对其进行排序......

\documentclass[french]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\usepackage[a4paper]{geometry}
\usepackage{csquotes}
\usepackage[backend=biber,safeinputenc,
sorting=none
]{biblatex}
\usepackage{filecontents}
\usepackage{babel}
\begin{filecontents}{\jobname.bib}
@article{villiers__1891,
    timestamp = {2016-07-08T10:22:30Z},
    journaltitle = {C. R. Acad. Sci.},
    journalsubtitle = {112},
    author = {Villiers, A.},
    date = {1891},
    pages = {536--538}
}

@article{loftsson_cyclodextrins_2007,
    title = {Cyclodextrins and their pharmaceutical applications},
    volume = {329},
    issn = {0378-5173},
    doi = {10.1016/j.ijpharm.2006.10.044},
    timestamp = {2016-08-22T13:06:37Z},
    langid = {english},
    number = {1–2},
    journaltitle = {International Journal of Pharmaceutics},
    shortjournal = {International Journal of Pharmaceutics},
    author = {Loftsson, Thorsteinn and Duchêne, Dominique},
    date = {2007-02-01},
    pages = {1--11},
    keywords = {Complexation,Cyclodextrin,Drug delivery,Formulation,History,Regulatory,Toxicology}
}

@article{freudenberg_uber_1938,
    title = {Über die {{Schardinger}} - {{Dextrine}} aus {{Stärke}}},
    volume = {71},
    issn = {1099-0682},
    doi = {10.1002/cber.19380710809},
    timestamp = {2016-07-08T14:23:45Z},
    number = {8},
    journaltitle = {Berichte der deutschen chemischen Gesellschaft (A and B Series)},
    shortjournal = {Ber. dtsch. Chem. Ges. A/B},
    author = {Freudenberg, Karl and Meyer-Delius, Margot},
    date = {1938-08-03},
    pages = {1596--1600}
}

@article{__????,
    timestamp = {2016-07-08T16:02:51Z},
    journaltitle = {Zentralbl. Bakteriol. Parasintenkd},
    journalsubtitle = {14},
    author = {Schardinger, F.},
    date = {1905},
    pages = {772--781}
}

@article{__????-2,
    timestamp = {2016-07-08T20:04:19Z},
    journaltitle = {Chemistry of the Saccharides},
    author = {Pringsheim, H.},
    date = {1992},
    pages = {280}
}  
\end{filecontents}
\addbibresource{\jobname.bib}

\begin{document}
    \begin{itemize}
        \item \autocite{villiers__1891}
        \item \autocite{__????}
        \item \autocite{__????-2}
        \item \autocite{freudenberg_uber_1938}
        \item \autocite{loftsson_cyclodextrins_2007}
        \item \autocite{freudenberg_uber_1938}
    \end{itemize}

            \printbibliography

              \end{document}

Biber 汇编 : 显示 nyt

Processus en cours : "C:/texlive/2016/bin/win32/biber.exe" "document"

    INFO - This is Biber 2.5
    INFO - Logfile is 'document.blg'
    INFO - Reading 'document.bcf'
    INFO - Found 5 citekeys in bib section 0
    INFO - Processing section 0
    INFO - Looking for bibtex format file 'document.bib' for section 0
    INFO - Decoding LaTeX character macros into UTF-8
    INFO - Found BibTeX data source 'document.bib'
    INFO - Overriding locale 'fr-FR' defaults 'normalization = NFD' with 'normalization = prenormalized'
    INFO - Overriding locale 'fr-FR' defaults 'variable = shifted' with 'variable = non-ignorable'
    **INFO - Sorting list 'nty/global/' of type 'entry' with scheme 'nty' and locale 'fr-FR'**
    INFO - Writing 'document.bbl' with encoding 'UTF-8'
    INFO - Output to document.bbl

    Processus terminé normalement

当它工作时我有另一台计算机,但我想知道为什么我的计算机不工作...我有 2 个配置文件.ini,如果你想比较...

blg 文件:

[0] Config.pm:343> INFO - This is Biber 2.5
[1] Config.pm:346> INFO - Logfile is 'HADDOCK.blg'
[102] biber-MSWIN32:290> INFO - === 
[242] Biber.pm:351> INFO - Reading 'HADDOCK.bcf'
[523] Biber.pm:776> INFO - Found 7 citekeys in bib section 0
[578] Biber.pm:3493> INFO - Processing section 0
[651] Biber.pm:3657> INFO - Looking for bibtex format file 'HADDOCK.bib' for section 0
[660] bibtex.pm:1187> INFO - Decoding LaTeX character macros into UTF-8
[663] bibtex.pm:1048> INFO - Found BibTeX data source 'HADDOCK.bib'
[902] UCollate.pm:66> INFO - Overriding locale 'fr-FR' defaults 'variable = shifted' with 'variable = non-ignorable'
[902] UCollate.pm:66> INFO - Overriding locale 'fr-FR' defaults 'normalization = NFD' with 'normalization = prenormalized'
[903] Biber.pm:3306> INFO - Sorting list 'nty/global/' of type 'entry' with scheme 'nty' and locale 'fr-FR'
[934] bbl.pm:526> INFO - Writing 'HADDOCK.bbl' with encoding 'UTF-8'
[940] bbl.pm:619> INFO - Output to HADDOCK.bbl

答案1

我删除了我的 texlives 2015 和 2016,删除了我的 texstudio,然后我安装了一个新的 texlive 2016,然后再次安装了 texstudio,并且此命令有效,我尝试比较前后文件以查看是否发现问题

相关内容