Page Layout ⇒ 3 column footer
-
- Posts: 58
- Joined: Sun Apr 27, 2008 12:50 pm
3 column footer
wanted to ask you if you could advise me how to create simple three column footer.
Should be on the each page and have text in the left part, centre, and right part... Something like that:
XYZ xyz XYZ
Thanks... Tried to find it here but could not so....
Thank you.
alex
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
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
3 column footer
Code: Select all
\documentclass{scrreprt}
\usepackage{scrlayer-scrpage}
\usepackage{blindtext}
\clearpairofpagestyles
\ifoot*{including plain}
\cfoot{without plain}
\ofoot[plain]{}
\begin{document}
\blinddocument
\blinddocument
\blinddocument
\end{document}
-
- Posts: 58
- Joined: Sun Apr 27, 2008 12:50 pm
3 column footer
replied too early... I can't make it work I am afraid

Johannes_B wrote:Easy peasy using the modern package scrlayer-scrpage of the KOMA-bundle.Code: Select all
\documentclass{scrreprt} \usepackage{scrlayer-scrpage} \usepackage{blindtext} \clearpairofpagestyles \ifoot*{including plain} \cfoot{without plain} \ofoot[plain]{} \begin{document} \blinddocument \blinddocument \blinddocument \end{document}
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm