Page Layout ⇒ 3 column footer
-
- Posts: 59
- 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
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- 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: 59
- 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