\documentclass[12pt,twoside]{report}
\usepackage{lipsum}
\usepackage{fancyhdr}
\fancypagestyle{plain}{
\fancyhf{}
%\fancyhead[LE,RO]{Share\LaTeX}
%\fancyhead[RE,LO]{\thechapter}
%\fancyfoot[CE,CO]{\leftmark}
%\fancyfoot[LE,RO]{\thepage}
\fancyfoot[CE,CO]{\thepage}
}
\renewcommand{\chaptermark}[1]{%
\markboth{\textsc{\chaptername
\ \thechapter.\ #1}}{}
}
\begin{document}
\newpage
\fancypagestyle{plain}{
\fancyhf{}
\renewcommand{\headrulewidth}{.5pt}
\fancyhead[LE,RO]{\leftmark}
\fancyfoot[LE,RO]{\thepage}
}
\renewcommand{\chaptermark}[1]{%
\markboth{\textsc{\chaptername
\ \thechapter.\ #1}}{}
}
\pagestyle{plain}
\pagenumbering{arabic}
\input{Chapters/Introduction}
\bibliographystyle{unsrt}
\bibliography{references}
\end{document}
这就是我现在所掌握的基础。我不想发布所有内容,因为可能太长而且没有必要。页面样式在页面顶部以小写字母输入章节名称。但是,当我进入参考资料页面时,它只会以大写字母输入参考资料。我遗漏了什么吗?
编辑:
第一页看起来不错,小写字母在起作用!
参考文献全部大写,看起来很糟糕
答案1
report
您的给定代码可以像我在以下 MWE 中所做的那样最小化。 类的定义fancyhdr
是使用大写字母。 因此,您需要添加/使用\nouppercase
。 要获得您想要的内容,请\textsc{\nouppercase\leftmark}
在定义中使用fancyhdr
。
请参阅以下 MWE(重要代码以 标记<=======
):
\documentclass[12pt,twoside]{report}
\usepackage{lipsum}
\usepackage{fancyhdr}
\fancypagestyle{plain}{
\fancyhf{}
\renewcommand{\headrulewidth}{.5pt}
\fancyhead[LE,RO]{\textsc{\nouppercase\leftmark}} % <===============
\fancyfoot[LE,RO]{\thepage}
}
\begin{document}
\newpage
\pagestyle{plain}
\pagenumbering{arabic}
\chapter{Introduction}
\lipsum
\section{test}
\lipsum
\end{document}
以及期望的结果: