Hi all,
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
Page Layout ⇒ 3 column footer
NEW: TikZ book now 40% off at Amazon.com for a short time.
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
3 column footer
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}
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
-
- Posts: 58
- Joined: Sun Apr 27, 2008 12:50 pm
3 column footer
Heh,
replied too early... I can't make it work I am afraid
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
Re: 3 column footer
Can you be a bit more explicit on what's not working? Do you have an up to date distribution? The package is fairly new and i am using features that are availbable to the great public for less than a month.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.