\begin{document}
\maketitle[image,logo=left]
\pagenumbering{roman}
\tableofcontents
\listoffigures
\listoftables
\input{symbols}
\printnomenclature
\setcounter{page}{1}
\pagenumbering{arabic}
\chapter{Einleitung}
\input{Tex-File/Kapitel/1Einleitung.tex}
\chapter{Aufgabenstellung}
\input{Tex-File/Kapitel/2Aufgabenstellung.tex}
\chapter{Theoretischer Hintergrund - Stand der Forschung}
\input{Tex-File/Kapitel/3StandDerTechnik.tex}
\chapter{Parameter der verwendeten Anlage}
\input{Tex-File/Kapitel/4ParameterDerAnlage.tex}
\chapter{Materialien und Methoden}
\input{Tex-File/Kapitel/5MaterialienMethoden.tex}Page Layout ⇒ Page numbering starts on page 5 - with number 5
Page numbering starts on page 5 - with number 5
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
-
kaiserkarl13
- Posts: 707
- Joined: Tue Mar 25, 2008 5:02 pm
Page numbering starts on page 5 - with number 5
\cleardoublepage right before \setcounter{page}{1} in your example to start the new page numbering system at the right place.)My minimal working example:
Code: Select all
\documentclass{report}
\begin{document}
\title{Hi}
\author{Me}
\pagenumbering{roman}
\maketitle
\tableofcontents
\listoffigures
\listoftables
\cleardoublepage
\setcounter{page}{1}
\pagenumbering{arabic}
\chapter{Einleitung}
\chapter{Aufgabenstellung}
\end{document}Page numbering starts on page 5 - with number 5
The counter ist alright, but the numbers are not displayed on the first pages
\documentclass[%
a4paper,%
11pt,% <10pt, 9pt>
smallchapters,
oneside,
%style=screen,
%sender=bottom,
blue,% <orange, green, violet>
%rgb, <cmyk>
%mono
]{tubsreprt}
\input{Packages}
\title{Beispieltitel}
\subtitle{Untertitel}
\author{someone}
\logo{\includegraphics{images/Logo.pdf}}
\titlepicture{images/bla.png}
\address{%}
\backpageinfo{%}
\maketitle[image,logo=left]%[<plain/image/imagetext>,<logo=left/right>]
\pagenumbering{roman}- Attachments
-
- no page number on page 5
- Seitenzahl1.PNG (11.84 KiB) Viewed 16115 times
-
- first display on page 6
- Seitenzahl2.PNG (10.41 KiB) Viewed 16115 times
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Page numbering starts on page 5 - with number 5
Page numbering starts on page 5 - with number 5
Guess what I've done firstJohannes_B wrote:Ask the provider of the template for support. We do not have access to the template.
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Page numbering starts on page 5 - with number 5
- Stefan Kottwitz
- Site Admin
- Posts: 10397
- Joined: Mon Mar 10, 2008 9:44 pm
Page numbering starts on page 5 - with number 5
I just don't have the time to install it myself right now. I can imagine that this could help:
\renewcommand*{\chapterpagestyle}{scrheadings}Stefan
Page numbering starts on page 5 - with number 5
makes it appear andStefan Kottwitz wrote:\renewcommand*{\chapterpagestyle}{scrheadings}
ultimately sets it to the right place. Thanks a lot!kaiserkarl13 wrote:You will have to do \cleardoublepage right before \setcounter{page}{1} in your example to start the new page numbering system at the right place.)