我需要添加一组尾注,基本上就是我所有的参考文献。我需要按照文章中的引用按数字顺序排列。使用下面的代码没有问题。
我现在需要在所有参考文献后添加参考书目。我需要参考书目包含 bib 文件中的所有来源,而不仅仅是引用的来源,并且我需要按照标准参考书目按字母顺序排列。我不知道如何使用第一个参考书目来制作这个“第二个”参考书目。任何帮助都将不胜感激。
\usepackage[
%backend=biber,
natbib=true,
style=numeric,
sorting=none
]{biblatex} %bibliography
\addbibresource{_References.bib}
.....
% Set up Bibliography
\newpage
\printbibliography
答案1
我不确定这是否符合您的要求,因为您没有给我们太多细节。但就问题而言,您可以尝试:
\documentclass{article}
\usepackage{mwe}
\usepackage[natbib=true,style=numeric,sorting=none]{biblatex}
\addbibresource{biblatex-examples.bib}
\defbibenvironment{nolabelbib} % borrowing from lockstep's answer https://tex.stackexchange.com/a/10106/105447
{\list
{}
{\setlength{\leftmargin}{\bibhang}%
\setlength{\itemindent}{-\leftmargin}%
\setlength{\itemsep}{\bibitemsep}%
\setlength{\parsep}{\bibparsep}}}
{\endlist}
{\item}
\begin{document}
\blindtext
\autocite{kastenholz,sarfraz,brandt}
\printbibliography
\newrefsection
\newrefcontext[sorting=nyt]
\nocite{*}
\AtNextBibliography{\DeclareNameAlias{author}{sortname}\DeclareNameAlias{editor}{sortname}\DeclareNameAlias{translator}{sortname}}
\printbibliography[env=nolabelbib,title={Bibliography}]
\end{document}