添加参考书目作为目录中的一部分而不是章节

添加参考书目作为目录中的一部分而不是章节

我使用的是 cleanthesis 样式,我希望参考书目在目录中显示为部分而不是章节,同时在文本中仍保留为章节。我遇到了以下解决方法,在 printbibliography 之前添加以下内容:

\cleardoublepage
\phantomsection
\addcontentsline{toc}{part}{BIBLIOGRAPHY}

但是现在我在目录中将其打印了两次,一次作为大写字母的部分,另一次作为小写的章节。

这是我正在使用的代码:

% **************************************************
% Document Class Definition
% **************************************************
\documentclass[%
paper=A4,               % paper size --> A4 is default in Germany
twoside=true,           % onesite or twoside printing
openright,              % doublepage cleaning ends up right side
parskip=half,           % spacing value / method for paragraphs
chapterprefix=true,     % prefix for chapter marks
11pt,                   % font size
headings=normal,        % size of headings
bibliography=totoc,     % include bib in toc
listof=totoc,           % include listof entries in toc
titlepage=on,           % own page for each title page
captions=tableabove,    % display table captions above the float env
chapterprefix=false,    % do not display a prefix for chapters
appendixprefix=false,    % but display a prefix for appendix chapter
draft=false,            % value for draft version
]{scrreprt}%

% **************************************************
% Setup YOUR thesis document in this file !
% **************************************************
\input{thesis-setup}

% **************************************************
% Document CONTENT
% **************************************************
\begin{document}

% --------------------------
% Front matter
% --------------------------
\pagenumbering{roman}           % roman page numbing (invisible for empty         page style)
\pagestyle{empty}               % no header or footers
\input{titulos/titlepages}      % INCLUDE: all titlepages
\cleardoublepage

%
\setcounter{tocdepth}{2}        % define depth of toc
\tableofcontents                % display table of contents
\cleardoublepage

% --------------------------
% Body matter
% --------------------------
\pagenumbering{arabic}          % arabic page numbering
\setcounter{page}{1}            % set page counter
\pagestyle{scrheadings}     % fancy header and footer

\part{INTRODUCTION}
\chapter{Intro. chapter 1}
\chapter{Intro. chapter 2}

\part{DEVELOPMENTS}
\chapter{Devs. chapter 1}
\chapter{Devs. chapter 2}

\part{CONCLUSIONS}
\chapter{Conc. chapter 1}
\chapter{Conc. chapter 2}

% --------------------------
% Back matter
% --------------------------
{%
\cleardoublepage
\phantomsection
\addcontentsline{toc}{part}{BIBLIOGRAPHY}

\setstretch{1.1}
\renewcommand{\bibfont}{\normalfont\small}
\setlength{\biblabelsep}{0pt}
\setlength{\bibitemsep}{0.5\baselineskip plus 0.5\baselineskip}
\printbibliography
}
\cleardoublepage

%Anexos
%Final Pages
\include{./Final_pages/CV}

\newpage
\mbox{}

% **************************************************
% End of Document CONTENT
% **************************************************
\end{document}

这就是我得到的:

包含两个参考书目条目的目录。

有没有办法实现这种行为?即,将参考书目作为目录中的一部分,将文本中的参考书目作为章节。

答案1

为了避免出现第二个目录条目(在级别章节上),请删除选项bibliography=totoc。您也可以将其更改为bibliography=nottotoc,但这是默认设置。

相关内容