Page Layout3 column footer

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
kostoglotov
Posts: 59
Joined: Sun Apr 27, 2008 12:50 pm

3 column footer

Post by kostoglotov »

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

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

3 column footer

Post by Johannes_B »

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.
kostoglotov
Posts: 59
Joined: Sun Apr 27, 2008 12:50 pm

Re: 3 column footer

Post by kostoglotov »

Thanks a lot!
alex
kostoglotov
Posts: 59
Joined: Sun Apr 27, 2008 12:50 pm

3 column footer

Post by kostoglotov »

Heh,
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}
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Re: 3 column footer

Post by Johannes_B »

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.
Post Reply