I have a document with the following configuration:
\documentclass[a4, 12pt]{article}
\usepackage[left=2.5cm,right=2.5cm,top=2.5cm,bottom=2.5cm]{geometry}
And the following fancyhdr definition:
\pagestyle{fancy}
\fancyhf{}
\fancyhead[L]{\leftmark}
\fancyhead[R]{\thepage}
\fancyfoot[L]{
\includegraphics[height=1.5cm]{Images/Logo 1.jpg}
}
\fancyfoot[R]{
\includegraphics[height=1.5cm]{Images/Logo 2.png}
}
\renewcommand{\headrulewidth}{0.5pt}
\renewcommand{\footrulewidth}{0.5pt}
Unfortunately, the footer content is slightly larger than 2.5cm which makes the text overlap with the hrule of the footer.
When I change the bottom value to 3cm the whole footer including the overlapping area just moves up. I tried using footskip and it works theoretically but the values are so confusing that it's a mess to add .5-1cm to the footer. I also read this but it does not help.
So how to keep the footer at the bottom when increasing the bottom value of the geometry?
Here is a minimal reproducible example. I want a top margin of about 0.5cm above the hrule of the footer so the text does not overlap.



\Longstackin the footer when you aren't stacking anything. Can you please edit your question to include a full, compilable minimum example that illustrates your problem, and more details about what the desired output should look like? – Willie Wong Jul 07 '23 at 20:21