这就是我重新定义的方式chaptermark
:
\renewcommand{\chaptermark}[1]{%
\markboth{\scshape{%
\chaptername\ \thechapter.%
\ #1}}{}}
sectionmark
我想以同样的方式重新定义,使用\scshape
。
我要放在\scshape
哪里\renewcommand{\sectionmark}[1]{\markright{\thesection ~ \ #1}}
?
答案1
将我的评论放入答案中:
您可以使用\renewcommand{\sectionmark}[1]{\markright{\scshape\thesection ~ \ #1}}
。请注意 是\scshape
一个开关(类似于\bfseries
)并且不带参数。您也可以使用 ,\textsc
这将使用 来带参数\renewcommand{\sectionmark}[1]{\markright{\textsc{\thesection ~ \ #1}}}
。