Right now, I am using the following fancy headers as required by my school's department policy. However, when I look at the footer, it has a number for each page in the middle of my footer label. I want to move the page number to the bottom right or completely remove it from the bottom middle of the footer. I added the page number to the top right, which I like, but it still remains in the bottom middle as well. I followed the steps on this page: Position of page numbers
but it only removes my current header/footer information, which is not helpful. I only want to remove the page lettering in the bottom middle of the page. Here is the code I'm using currently for my fancy header/footer.
This part is in the package inclusion area:
\usepackage{fancyhdr} %%For headers/footers
\pagestyle{fancy} %%For fancy headers
This part is in the document:
\fancyhead[L]{M 414 - DETERMINISTIC MODELS } %%Header
\rhead{Lecture Notes}
\fancyfoot[L]{NAME INFO - UNIVERSITY OF MONTUCKY: MATH DEPARTMENT} %Footer
\rhead{}
\renewcommand{\footrulewidth}{1pt}
%Fix headers on Table of Contents and List of Figures:
\fancypagestyle{plain}{
\fancyhead{}
\fancyfoot{}
\fancyhead[L]{M 414 - DETERMINISTIC MODELS} %%Header
\fancyhead[R]{Lecture Notes}
\fancyfoot[L]{NAME INFO - UNIVERSITY OF MONTUCKY: MATH DEPARTMENT} %Footer
\rhead{}
\renewcommand{\footrulewidth}{1pt}
}
\rhead{\thepage}
The key is this:
Which needs to precede
Originally, my code had that \fancyhf{} tag, but it followed my \begin{document} tag, so it didn't work correctly. Everything works perfectly now.
– Blairg23 Feb 06 '14 at 08:22