使用 fancyhdr 时未定义的控制序列

使用 fancyhdr 时未定义的控制序列

当我使用 fancyhdr 设置论文的页眉和页脚时,我收到“未定义控制序列”错误。以下是 MWE:

\documentclass[4paper,final,onecolumn,thmsb,titlepage]{book}
\RequirePackage{fancyhdr}
\pagestyle{fancyplain}
\renewcommand{\chaptermark}[1]{\markboth{\bsc{\chaptername~\thechapter{} :} #1}{}} \renewcommand{\sectionmark}[1]{\markright{\thesection{} #1}}
\lhead{\fancyplain{} }
\rhead{\fancyplain{}{\small \leftmark}}
\cfoot{\fancyplain{\textrm{\thepage}}{\small \thepage}}
\renewcommand{\headrulewidth}{0.5 pt}
\renewcommand{\footrulewidth}{0.5 pt}
\begin{document}
\tableofcontents
\chapter{Test Chapter}
\section{Section One}
\newpage
\section{Section Two}
\end{document}

请问有什么线索吗?

答案1

\bsc按照 egreg 和 Vincent 的建议删除后问题解决。

相关内容