自定义页眉和页脚

自定义页眉和页脚

我正在写我的学士论文,第一页的要求是:

  • 在标题中 - 机构名称
  • 中间是论文的标题
  • 页脚中 - 城镇和年份

我怎样才能做到这一点?

我尝试使用该fancyhdr软件包并成功更改了页眉,但这仅适用于我的论文中的页面,而不适用于第一页。页眉不必加下划线。此外,在下一页上,我不希望出现任何页眉。

这是我目前所拥有的:

\documentclass[a4paper,10pt]{report}
\usepackage{fancyhdr}

\pagestyle{fancy}
\lhead{}
\chead{Institution}
\rhead{}
\title{Title}
\author{Author}

\begin{document}
\end{document}

答案1

尝试这个:

\documentclass[a4paper,10pt]{report}
\usepackage{fancyhdr}

% \pagestyle{fancy}
\fancypagestyle{empty}{%
    \fancyhf{}% removes h/f
    \fancyhead[c]{\Huge{Instituion}}% Your inst name
    \fancyfoot[r]{Town and year}
}
\renewcommand{\headrulewidth}{0pt}% removes header line

\title{Title}
\author{Author}

\begin{document}
\maketitle
    
\begin{abstract}
\thispagestyle{plain}
    Here goes your abstract
\end{abstract}
\end{document}

答案2

或者这样

\pagestyle{fancy} % options: empty , plain , fancy

\renewcommand{\headrulewidth}{0} % remove the line

\lhead{}\chead{Institution}\rhead{}
\lfoot{}\cfoot{}\rfoot{Town \& Year}

相关内容