在 Latex 中的附录后添加参考书目

在 Latex 中的附录后添加参考书目

我是新手LaTeX,正在写论文。索引无法正常工作,我尝试了很多解决方案,但都不起作用。最大的挑战是我最终没有在索引中找到参考书目。所有参考文献、参考书目和词汇表都在名为“参考文献”的不同文件夹中。此外,单击索引(用于表格、图表列表)时,它会将我带到标题页(目前两页都是空的,这可能是一个问题吗?)。

我有以下格式的文档。

 1. TOC
 2. tables list
 3. fig list
 4. intro
 5. chap2
 6. Appendix
 7. Glossary
 8. bibliography

以下是附录文件的代码

\appendix
\input{References/app1}
\input{References/app2}
\input{References/glossary}

以下是主文件的代码


\documentclass[12pt]{report}
\usepackage[utf8]{inputenc}
\usepackage{pdfpages}
\usepackage{hyperref}
\usepackage[section,numberedsection=autolabel, acronym]{glossaries}
\usepackage{setspace}
\usepackage[style=ieee]{biblatex}
\makeglossaries

% Use package below to change margins 
\usepackage{graphicx}
\usepackage[a4paper,top=25mm,bottom=25mm,left=25mm,right=25mm]{geometry}
% text color package
\usepackage{xcolor}

% use to customize chapter headings of toc lof lot
\usepackage{tocloft}
\renewcommand{\cfttoctitlefont}{\hspace*{\fill}\Large\bfseries}
\renewcommand{\cftaftertoctitle}{\hspace*{\fill}}
\renewcommand{\cftlottitlefont}{\hspace*{\fill}\Large\bfseries}
\renewcommand{\cftafterlottitle}{\hspace*{\fill}}
\renewcommand{\cftloftitlefont}{\hspace*{\fill}\Large\bfseries}
\renewcommand{\cftafterloftitle}{\hspace*{\fill}}

\usepackage{sectsty}
\chapternumberfont{\Large} 
\chaptertitlefont{\Large}


\addbibresource{References/references.bib}



% document begins here
\begin{document}


\input{Header/titlepage}

\newpage
\thispagestyle{empty}
\input{Header/abstract}

\newpage
\pagenumbering{roman}
\tableofcontents
\addcontentsline{toc}{chapter}{Table of Contents}
\newpage


\listoftables
\addcontentsline{toc}{chapter}{\listtablename}
\newpage

\listoffigures
\addcontentsline{toc}{chapter}{\listfigurename}

\newpage    
%CHAPTERS BEGIN
\pagenumbering{arabic}
\input{Chapters/Intro}    

%%Appendix begining
\input{References/Appendix}
\printglossary[title=Abbreviations,type=\acronymtype]
\printglossary[title=Definitions]

%printing bibliography
\printbibliography

\end{document}

相关内容