在附录包中,如何获取章节标题以及节标题

在附录包中,如何获取章节标题以及节标题

我正在使用附录包将三个附录放在论文末尾。我已按需要设置了它 - 每个附录都按字母而不是编号,但小节有编号,等等。但是,虽然显示了章节(单个附录)的标题,但没有显示“章节”(附录)的标题。我尝试使用 \markleft(Appendices),它在开头的缩写章节中有效,但似乎不适用于附录,至少在我设置的方式下是这样。

有没有办法让“附录”一词出现在章节标题通常出现的位置,即右侧页面标题?但不使用花式标题。

主要代码为:

\documentclass[12pt,twoside]{book} %,PageStyleII,times,numbering,print,custombib
\usepackage{geometry}                       % See geometry.pdf to learn the layout options. There are lots.
\geometry{a4paper}                          % ... or a4paper or a5paper or ... 
\usepackage{floatrow}
\usepackage{setspace}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{graphicx}
\usepackage{lscape}
%\usepackage{float}
\usepackage{booktabs}
\captionsetup[figure]{font={small}, skip=1pt, singlelinecheck=false}
\captionsetup[subfigure]{font={small}, skip=1pt, singlelinecheck=false}
\captionsetup{labelfont=bf}
\captionsetup[table]{font={small}, skip=1pt, singlelinecheck=false}
\raggedbottom
\usepackage{lineno}
\usepackage{mathtools}
\usepackage[all]{nowidow}

\usepackage{tocloft}
\usepackage{xpatch}

\usepackage{enumitem}

%\usepackage{amssymb}
\usepackage{cite}
\usepackage{natbib}
\renewcommand\bibname{References}
\usepackage[nottoc]{tocbibind}

\usepackage{appendix}
\usepackage{chngcntr}

\usepackage{longtable}

\usepackage{color, colortbl}
\definecolor{lightgray}{gray}{0.9}

\floatsetup[table]{capposition=top}

\usepackage{makecell}
% ******************************** Main Matter *********************************
\mainmatter
% ********************************** Appendices ********************************

\begin{appendices} % Using appendices environment for more functunality

\include{Appendix/appendix}
%\include{Appendix2/appendix2}

\end{appendices}

在附录文件中,我有:

\appendixpage
\addappheadtotoc

\renewcommand*{\thesection}{\Alph{section}}

\renewcommand{\thefigure}{\thesection.\arabic{figure}}
\counterwithin{figure}{section}  
\renewcommand{\thetable}{\thesection.\arabic{table}}
\counterwithin{table}{section}  
\renewcommand{\theequation}{\thesection.\arabic{equation}}
\counterwithin{equation}{section}  

Blah blah

%********************************** %First Section  **************************************
\section{First Appendix}

相关内容