Page LayoutFooter not working as expected in Texshop

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
jay_singh
Posts: 9
Joined: Tue Jul 14, 2020 6:27 pm

Footer not working as expected in Texshop

Post by jay_singh »

Hello,
Here is my preamble to define a footer for every page in my document;

Code: Select all

\documentclass[10pt]{article} 
\usepackage[left=1.5cm,top=0.7cm,right=1.6cm,bottom=0.6cm]{geometry}
\usepackage{hyperref}
\usepackage{indentfirst}
\usepackage{fancyhdr}
\fancyhf{}
\fancyfoot[C]{IEEE Senior Membership Application}
%\renewcommand\headrulewidth{0pt}
\pagestyle{fancy}
\begin{document}
\end{document}
But the footer is empty for me. May I know what needs to be changed so that we get footer for every page.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
Bartman
Posts: 366
Joined: Fri Jan 03, 2020 2:39 pm

Footer not working as expected in Texshop

Post by Bartman »

The length for the bottom margin is too small to see the footer.

Some off-topic notices:

The default font size for this document class is already 10pt.

With a few exceptions, hyperref should be the last package to be loaded.
jay_singh
Posts: 9
Joined: Tue Jul 14, 2020 6:27 pm

Footer not working as expected in Texshop

Post by jay_singh »

Thanks for your reply. I learnt sth new. Appreciate it
Post Reply