I'm trying to rewrite one of my lab reports (previously written in Word) in LaTeX to learn how to use LaTeX properly. The front pages of the lab reports have to be of a specific format, and, among other things, they must have the name of the faculty where I study in the footer.
I tried to use the "fancyhdr" package to make a custom footer, but I didn't manage to make it show on the final PDF document. I read this previous thread, as well as this guide on the topic, and did some adjustments according to these, but the footer still wouldn't show.
From what I gathered from the sources I found, the problem is the "\maketitle" command interfering with the page style. Writing "\thispagestyle{fancy}" after "\maketitle" would not solve the problem, so instead I tried redefining the plain page style, (code shown below) but this did not seem to work either.
Can anyone help with my problem?
Code: Select all
\documentclass[11pt, a4paper]{report}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{ae,aeguill}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancypagestyle{plain}{
\fancyhf{}
\fancyfoot[C]{\textsc{Faculty Name}}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}}
\title{Lab Report Title}
\author{Person 1 \& Person 2}
\date{}
\begin{document}
\maketitle
\end{document}