Page LayoutDesign page layout in Latex

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
Lumy
Posts: 24
Joined: Tue Jan 06, 2009 2:41 pm

Design page layout in Latex

Post by Lumy »

Hello!

I would like to have the format of the book (with multiple articles) with headers, as follows:

first page - name of the journal (left)
- page number (right)

second page - name of the authors (right)
- page number (left)

third page - article title (left)
- page number (right)


Thank you very much!

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
Stefan Kottwitz
Site Admin
Posts: 10290
Joined: Mon Mar 10, 2008 9:44 pm

Design page layout in Latex

Post by Stefan Kottwitz »

Hi,

how did you start? What is your base document? We don't even know your document class yet (book, report, scrbook, memoir, ...) or which header/footer package you are using (fancyhdr, scrpage2, scrlayer-scrpage, ...)

Stefan
LaTeX.org admin
Lumy
Posts: 24
Joined: Tue Jan 06, 2009 2:41 pm

Design page layout in Latex

Post by Lumy »

Thank you for your response!

My document class is book and package is fancyhdr. Something like this

\documentclass{book}
\usepackage{fancyhdr}

\pagestyle{fancy}

\fancyhf{} \fancyhead[LE,RO]{\slshape\thepage}

\newcommand{\helv}{%
\fontsize{9}{11}\selectfont}
\fancyhf{} \fancyhead[LE,RO]{\helv\thepage} \fancyhead[LO]{\helv
\nouppercase\rightmark} \fancyhead[RE]{\helv
\nouppercase\leftmark}

but the header of the first page - name of the journal (left)
- page number (right)

header of the second page - name of the authors (right)
- page number (left)

header of the third page - article title (left)
- page number (right)

Thank you again!
Post Reply