添加附录和参考书目的封面

添加附录和参考书目的封面

我需要在附录和参考书目前面添加两个封面(纯色页面,文本居中),以满足研究生院的排版要求。它们必须被视为附录和参考书目的一部分,即目录中定义附录或参考书目开始的条目应引用封面。

有任何想法吗?

我在下面附上了主文档的精简版。

谢谢你!


\documentclass[12pt,oneside]{book}

% \usepackage[l2tabu, orthodox]{nag}
\usepackage[top=1in, bottom=1in, left=1in, right=1in]{geometry}

\usepackage[latin1]{inputenc}   
\usepackage[T1]{fontenc}        
\usepackage[light,partialup,largesmallcaps]{kpfonts}  

\usepackage{setspace}
\usepackage{microtype}

\usepackage[sort&compress]{natbib}
\bibpunct{[}{]}{,}{n}{,}{,}

\usepackage{graphicx}

\usepackage{booktabs}
\usepackage{multirow}
\usepackage{lscape}
\usepackage{longtable,ltcaption}

\usepackage{array}
\usepackage{mathtools}

\newcommand{\hmmax}{0}
\newcommand{\bmmax}{2}
\usepackage{bm}

\usepackage[bf]{caption}
\usepackage[version=3]{mhchem}
\usepackage{xspace}



\newcommand{\clearemptydoublepage}%
  {\newpage{\pagestyle{empty}\cleardoublepage}}


\begin{document}


% FRONT MATTER: TITLE, ABSTRACT, DEDICATION, AND THANKS

\pagestyle{empty}           
\pagenumbering{roman}       
\include{prelim/title}
\doublespace
\include{prelim/abstract}
\include{prelim/copyright}
\pagestyle{plain}       
\include{prelim/dedication}
\include{prelim/thanks}


% TABLE OF CONTENTS, LIST OF FIGURES, TABLE OF TABLES

\singlespace
\tableofcontents

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

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

\doublespacing


% MAIN BODY OF THESIS
% -------------------
\newpage
\pagestyle{plain}               
\pagenumbering{arabic}          
\include{ch01_intro/chapter01}
% Other chapters emitted for brevity


% APPENDICES

\appendix
\clearemptydoublepage
\include{appendices/appendix1}
% Other appendices ommitted
\clearemptydoublepage

% End matter:
\pagestyle{plain}
\singlespace
\bibliographystyle{unsrtnat}
\addcontentsline{toc}{chapter}{\protect\textit{Bibliography}}
\bibliography{references}
\clearemptydoublepage

\end{document}

答案1

您可以使用\part*{Bibliography},这将给出一个带有标题但没有超链接的空白页面。

获取正确的链接更加困难,因为您必须破解附录/参考书目的目录条目并在标题页上设置锚点。

更新

这似乎有效

\documentclass{book}

\usepackage[english]{babel}
\usepackage{blindtext}

\usepackage{hyperref}

\begin{document}
\tableofcontents

% Main matter
\chapter{Chap One}
\Blindtext[5]

\chapter{Chap Two}
\Blindtext[3]

\appendix
\part*{Appendix}
\addcontentsline{toc}{chapter}{Appendix}

\chapter{App One}
\blindtext[7]

\chapter{App Two}
\blindtext[7]

\part*{Bibliography}
\addcontentsline{toc}{chapter}{Bibliography}

%\bibliography{references}
\blindtext
\end{document}

相关内容