有多个参考书目的论文

有多个参考书目的论文

我正在 overleaf 中处理我的论文,并使用了一个模板,因为我才刚刚开始使用 Latex。此模板与 thesisstyle.sty 文件配合使用,其中包含有关参考书目的信息,如下所示:

\ProvidesPackage{thesisstyle} 
    
%%%%%%% Bibliography 
    
 \RequirePackage{mathscinet} 
 \RequirePackage[backend    = bibtex,
                            sortcites  = true,
                            giveninits = true,
                            sortlocale = nb_NO,
                            style      = vancouver,
                            refsection = chapter]{biblatex} 
    \addbibresource{bibliographies/chapter1.bib} 
    \addbibresource{bibliographies/chapter2.bib} 
    \addbibresource{bibliographies/chapter3.bib}     
    \addbibresource{bibliographies/chapter4.bib}

在主文档中我合并多个 .tex 文件,如下所示:

\usepackage{thesisstyle}   % Thesisstyle
\includeonly
{
    sections/introduction,
    sections/thesisaims,
    sections/materials,
    sections/discussion,
}

\begin{document}
    \include{sections/introduction}
    \include{sections/thesisaims}
    \include{sections/materials}
    \include{sections/discussion}
\end{document}

正如您所见,每个部分都有自己的chapter1.bib文件等。

我想在讨论部分之后打印参考书目,其中包括所有前面部分(介绍、论文目标、材料、讨论)的所有参考资料。如果我使用\printbibliographyafter\include{sections/discussion}命令,它只会打印讨论的参考书目,而不会打印前面部分的书目。

讨论部分之后我怎样才能获得完整的参考书目?

非常感谢您的帮助。我删除了这篇文章中的大部分内容thesisstyle.stymain.tex文件,以便在这篇文章中提供更好的概述。但如果您需要更多信息,请告诉我。

亲切的问候!

相关内容