General ⇒ pagenumbering
pagenumbering
is there a possibility, that some pages are without a pagenumber and wihtout counting it?
(in my paper is after the titlepage a page with the bibliographic details and the abstract. this page should be without a pagenumber so that the TOC will start with "1")
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
- pumpkinegan
- Posts: 91
- Joined: Thu May 03, 2007 10:29 pm
pagenumbering
Code: Select all
\addtocounter{page}{-1}
Perhaps you will need a
Code: Select all
\thispagestyle{empty}
The simple case would look something like:
Code: Select all
\documentclass[12pt,a4paper,titlepage]{article}
\begin{document}
\begin{titlepage}
\vspace*{3cm}
\begin{center}
\Huge {Title of report}
\end{center}
\vspace{2cm}
\begin{center}
\Large {Firstname Surname} \\[3pt]
\textit{Affiliation} \\
\textit{Address} \\ [1cm]
\today \end{center}
\end{titlepage}
\clearpage
\thispagestyle{empty}
\section{Abstract and bibliography section}
\clearpage
\addtocounter{page}{-1}
\section{First section}
\end{document}
Patrick.
-
- Posts: 9
- Joined: Mon Mar 10, 2008 7:23 pm
Re: pagenumbering
If yes how?
Many thanks!
Re: pagenumbering
\renewcommand{\thepage}{-- \arabic{page} --}
if you want an endash.
B.A.
-
- Posts: 9
- Joined: Mon Mar 10, 2008 7:23 pm
Re: pagenumbering
Unfortunately it is a little bit more complicated:
I am working with lyX so I only use pieces of Latex code here and then in the document.
I don't have a page number on the first page, then the table of contents, figures, tables etc is numbered in roman, then it begins anew with arabic page numbers. So far my code on the relevant pages looks the following:
On the first pages:
\pagestyle{myheadings}\pagenumbering{Roman}
Later on:
\pagestyle{myheadings} \pagenumbering{arabic}
Now i'd only like to center them and have the dashes...