我开始说我是 LaTeX 新手,我主要尝试模仿他人的工作来制作文档。
然后,我正在尝试写我的硕士论文。我尝试使用该fancyhdr
软件包,在我之前的作品中它起作用了。但是,在这里它不起作用。
我附上了我的全部代码,除了书面部分(当然)
非常感谢任何能帮助我的人。
\documentclass[a4paper, 12pt]{report}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{afterpage}
\usepackage[a4paper,width=150mm,top=25mm,bottom=25mm,bindingoffset=6mm]{geometry}
\usepackage{graphicx}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{fancyhdr}
\pagestyle{headings}
\fancyhead{}
\fancyhead[CO,CE]{[...]}
\fancyfoot{}
\fancyfoot[LE,RO]{\thepage}
\fancyfoot[LO,CE]{Chapter \thechapter}
\fancyfoot[CO,RE]{Myname}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0.4pt}
\addtolength{\headheight}{0pt}
\fancypagestyle{plain}{
}
\setlength{\parskip}{1ex plus 0.5ex minus 0.4ex}
\linespread{1.5}
\newcommand{\spa}{\hspace{2cm}}
\begin{document}
\begin{titlepage}
[...]
\end{titlepage}
\newpage
\thispagestyle{empty}
\mbox{}
\newpage
\thispagestyle{empty}
\begin{center}
\bigskip
\textbf{Abstract}
\end{center}
[...]
\newpage
\thispagestyle{empty}
\mbox{}
\tableofcontents
\pagenumbering{arabic}
\clearpage
\setlength{\headsep}{1pt}
\chapter{Introduction}
\section{The European Union}
[...]
\end{document}