这是我的文件:
\documentclass[12pt,a4paper,twoside]{report}
%Layout
\usepackage[top=2.5cm, bottom=3cm, left=2.5cm, right=2.5cm,paper=a4paper]{geometry}
%Header
\usepackage{fancyhdr}
%Chapter adjustments
\usepackage{titlesec}
\titleformat{\chapter}{\normalfont\fontsize{16pt}{0}\bfseries}{\thechapter.}{9pt}{}
\titlespacing*{\chapter}{0pt}{0pt}{16pt}
\usepackage{blindtext}
%Arial - ATTENTION: Compile with XeLaTeX (not PDFLaTeX)!
\usepackage{fontspec}
\defaultfontfeatures{Scale = MatchLowercase}
\setmainfont{Arial}[Scale = 1.0]
%Formatting the header
\pagestyle{fancy}
\fancyhf{}
\fancyhead[EL,OR]{\fontsize{8}{5} \selectfont \thepage}
\fancyhead[ER,OL]{\fontsize{8}{5} \selectfont \leftmark}
\renewcommand{\chaptermark}[1]{\markboth{#1}{}}
\fancypagestyle{plain}{
\fancyhf{}
\fancyhead[EL,OR]{\fontsize{8}{5} \selectfont \thepage}
\fancyhead[ER,OL]{\fontsize{8}{5} \selectfont \leftmark}
}
%Abstracttexts
\newcommand{\FirstAbstract}{This is Abstract 1.}
\newcommand{\SecondAbstract}{This is Abstract 2.}
\begin{document}
\pagenumbering{Roman}
{\fontsize{16pt}{0} \selectfont {\bf Abstract 1}}
\newline \vspace{-2mm} \\
\FirstAbstract
\newpage
{\fontsize{16pt}{0} \selectfont {\bf Abstract 2}}
\newline \vspace{-2mm} \\
\SecondAbstract
\newpage
\pagenumbering{arabic}
\chapter{Chapter 1}
\blindtext \blindtext \blindtext \blindtext \blindtext
\newpage
\chapter{Chapter 2}
\blindtext
\newpage
\section{First Section}
\blindtext
\newpage
\end{document}
我想调整文档的页眉 - 前两页也应包含页面标题。对于文档的其余部分,它已经起作用了,但我不知道如何只调整前两页而不干扰其他后续页面。我已经尝试了以下代码:
\usepackage{ifthen}
\lhead{\ifthenelse{\value{page}=1}{\fontsize{8}{5} \selectfont Kurzfassung}}
但这样一来,后面页面的页眉就乱了。提前谢谢大家 :)!
答案1
[...]
\begin{document}
\markboth{Kurzfassung}{Kurzfassung}
\pagenumbering{Roman}
[...]