符号列表有参考书目标题

符号列表有参考书目标题

我的论文中有一个部分包含一些数学符号。此部分位于参考书目之后。我的问题是此列表的第二页显示有参考书目标题。我该如何解决这个问题?这是我的主文件。

\documentclass[12pt]{report}
\usepackage{amsmath, amsthm, amscd, amsfonts, amssymb,graphicx, grffile, color, mathrsfs}
\usepackage[bookmarksnumbered,plainpages=false,pdfpagelabels]{hyperref}
%\usepackage[plainpages=false]{hyperref}
\usepackage{epstopdf}
\usepackage{nomencl}
\usepackage{xtocinc}
\renewcommand{\baselinestretch}{1.2}
\def\dis{\displaystyle}
%\renewcommand{\baselinestretch}{1.3}
\textwidth = 15.8 cm \textheight = 22.3 CM \oddsidemargin = 0.7 cm
\evensidemargin = 2.1 cm
\topmargin = -0.5 cm
\newtheorem{theorem}{Theorem}[section]
\newtheorem{lemma}[theorem]{Lemma}
\newtheorem{proposition}[theorem]{Proposition}
\newtheorem{corollary}[theorem]{Corollary}
\theoremstyle{defn}
\newtheorem{definition}[theorem]{Definition}
\newtheorem{example}[theorem]{Example}
\theoremstyle{remark} \newtheorem{remark}[theorem]{Remark}
\numberwithin{equation}{section}
\renewcommand{\theequation}{\thesection.\arabic{equation}}
\begin{document}
\setcounter{page}{1}
\pagenumbering{roman}
 \typeout{Declaration}
\include{declaration}
\include{abstract}
\input{introduction}
\baselineskip=0.9 cm
\newpage
\setcounter{page}{1} \pagestyle{headings}
\pagenumbering{arabic}
\tableofcontents
\input{ch1}
\input{ch2}
\input{ch3}
\input{ch4}

\cleardoublepage
\phantomsection
\addcontentsline{toc}{chapter}{Bibliography}
\bibliographystyle{amsplain}
\bibliography{XBib}
\cleardoublepage
\phantomsection
\addcontentsline{toc}{chapter}{Notation}
\input{sym}
\cleardoublepage
\phantomsection
\addcontentsline{toc}{chapter}{Subject index}
\input{ind2}
\end{document}

答案1

除非sym文件以命令开头,否则\chapter您可能必须添加\markboth{Notation}{Notation} just after the relevant\addcontentsline`。

如果sym 包含\chapter命令,则应\markboth在该行后面添加。

但是,\chapter命令应该创建适当的运行标题,因此我假设您已经通过其他方法标出了符号列表。

相关内容