有了章节之后我可以创建独立的部分吗?

有了章节之后我可以创建独立的部分吗?

我有一份包含 4 个“章节”的文档。最后,我尝试添加参考书目部分,但它被归类在最后一章下。

我希望它作为一个独立的部分。

\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{fancyhdr}
\usepackage{imakeidx}
\usepackage[nottoc]{tocbibind}
\usepackage{nomencl}
\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage[colorinlistoftodos]{todonotes}
\usepackage{parskip}
\usepackage{makeidx}
\usepackage{tikz}

这些是我正在使用的包。

这是我的索引页

\tableofcontents

\pagestyle{fancy}
\lhead{\chaptername{\thechapter}}
\chead{Group Theory}
\rhead{Section\thesection}
\cfoot{Page \thepage\, of $29$}

有人能帮忙吗?我有两个独立的章节标题 - 致谢和证书,但它们在任何章节开始之前都有。

我如何才能对参考书目部分做同样的事情?

答案1

\front...使用 和的组合\main...以及\backmatter使用 pagestyle 和\counterwithin\counterwithout(包chngcntr这完全没有问题。

\documentclass{book}

\usepackage{fancyhdr}
\usepackage[nottoc]{tocbibind}
\usepackage[english]{babel}
\usepackage{chngcntr}
\usepackage{lastpage}


\pagestyle{fancy}
\lhead{\chaptername{} \thechapter}
\chead{Group Theory}
\rhead{\ifnum\value{section}>0 Section{} \thesection\fi}
\cfoot{Page \thepage{} of \pageref{LastPage}}

\usepackage{blindtext}

\begin{document}
\frontmatter
\counterwithout{section}{chapter}
\pagestyle{plain}

\section{Acknowledgements}
\section{Certificate}

\mainmatter
\counterwithin{section}{chapter}
\pagestyle{fancy}
\cleardoublepage
\chapter{First}

\cite{Lam94}
\chapter{Second}
\chapter{Third}
\chapter{Fourth}
\section{First}
\blindtext[10]

\backmatter
\bibliographystyle{alpha}
\bibliography{biblio}


\end{document}

相关内容