Page Layout ⇒ Text above Footer on every Page
Text above Footer on every Page
I want something like this I know how to put header and footer using fancyhdr. But I am interested in putting some text over footer in every page. For this format I have attached an image as a sample.
- Attachments
-
- Screen Shot 2013-04-20 at 7.00.20 PM.png (11.53 KiB) Viewed 15503 times
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Text above Footer on every Page
i think what you are looking for is the following:
Code: Select all
\documentclass{article}
\usepackage[left=2.5cm,right=2.5cm]{geometry}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhf{}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{1pt}
\lfoot{\thepage}
\rfoot{\vspace{-.8cm}Erasmus Mundus Programme\\\vspace{.24cm}
\footnotesize ADVANCED MASTERS IN STRUCTURAL ANALYSIS OF MONUMENTS AND HISTORICAL CONSTRUCTIONS}
\begin{document}
Tex of document
\end{document}
...it was a pleasure to answer your question as i am a great fan of the ERASMUS Mundus Programme


tommytex
- Attachments
-
- fancyfooter.pdf
- (25.41 KiB) Downloaded 758 times
Re: Text above Footer on every Page
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Text above Footer on every Page
Code: Select all
\documentclass[11pt]{article}
\usepackage[T1]{fontenc}
\usepackage[margin=2cm]{geometry}
\usepackage{fancyhdr}
\fancyhf{}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0.5pt}
\lfoot{\thepage}
\rfoot{%
\smash{% % hide vertical stretch of the following content
\parbox[b]{\textwidth}{%
\raggedleft
Erasmus Mundus Programme\\[1.5ex]
\footnotesize
\MakeUppercase{Advanced Masters in structural Analysis of Monuments and historical Constructions}
}%
}%
}
\pagestyle{fancy}
\begin{document}
Text of document
\end{document}
Best regards and welcome to the board
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Text above Footer on every Page
