我正在撰写本科毕业论文(在德国一所大学),其要求如下:
\documentclass[12pt,headsepline,footsepline]{scrreprt}
\usepackage{fancyhdr}
\pagestyle{fancy}
\renewcommand{\chaptermark}[1]{ \markboth{#1}{} }
\renewcommand{\sectionmark}[1]{ \markright{#1}{} }
\fancyhead[LO]{}
\fancyhead[RE]{\thechapter}
\usepackage{apacite}
...
\begin{document}
\begin{titlepage}...\end{titlepage}
\pagenumbering{roman}
\tableofcontents
\listoffigures
\listoftables
\chapter*{List of Abbreviations}
\addcontentsline{toc}{chapter}{List of Abbreviations}
...
\chapter*{Abstract}
\addcontentsline{toc}{chapter}{Abstract}
\chapter{Introduction}
\setcounter{page}{1}
\pagenumbering{arabic}
...
...
\bibliographystyle{apacite}
\bibliography{references}
现在几乎所有东西都正常工作了,只剩下一个问题:“图片列表”和“表格列表”章节使用纯页面样式并出现在目录中;但是,缩写列表(我使用它来创建,\chapter*
因为我不想对其进行编号)在第一页和第二页都使用了完整的页眉(虽然不完美,但可以接受),而且它在页眉中放置了“表格列表”,即错误的名称和大写字母,即使页眉中的所有其他章节名称都以小写字母书写(感谢命令\renewcommand{\chaptermark}[1]{ \markboth{#1}{} } \renewcommand{\sectionmark}[1]{ \markright{#1}{} }
)。此外,对于由 -package 自动创建的参考文献章节apacite
,页眉中的单词“REFERENCES”以大写字母书写。有人知道我该如何更改这两个内容吗?
答案1
最好使用scrbook
类,而不是诉诸诸如之类的低级技巧\pagenumbering
。
\documentclass[12pt,headsepline,footsepline,oneside]{scrbook}
\usepackage{fancyhdr}
\pagestyle{fancy}
\renewcommand{\chaptermark}[1]{\markboth{#1}{}}
\renewcommand{\sectionmark}[1]{\markright{#1}}
\fancyhead[R]{\thechapter}
\usepackage[nosectionbib]{apacite} % the bibliography is a chapter
\begin{document}
\begin{titlepage}...\end{titlepage}
\frontmatter
\tableofcontents
\listoffigures
\listoftables
\chapter{List of Abbreviations}
\chapter{Abstract}
\mainmatter
\chapter{Introduction}
\nocite{*} % to populate the bibliography
\bibliographystyle{apacite}
\bibliography{references}
\end{document}
在我的实验中,标题中没有一个单词是大写的。
您可能需要更好地自定义参数fancyhdr
。
答案2
对于参考标题,您应该尝试以下命令
\renewcommand{bibname}{References}
(或者任何你想要的替代“引用”)在命令之后
\usepackage{apacite}
对于缩写列表标题,只需添加
\markboth{List of Abbreviations}{}
执行命令后\chapter*
它应该可以工作。