Page Layout ⇒ How can I number from the title page to the end of the doc?
-
- Posts: 17
- Joined: Sat Oct 10, 2009 9:28 pm
How can I number from the title page to the end of the doc?
I am currently writing my PhD thesis. My uni says the thesis must be numbered from the title page to the end of the document. My thesis has following layout.
1. title page (manual format)
2. abstract
3. list of figures
4. list of tables
5. table of contents
6. text
I found that the page numbers of both abstract and contents will be automatically set to 1. Could someone tell me how can I force the page number start from the literally first page to the end? Thank you.
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
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
How can I number from the title page to the end of the doc?
Not the usual behaviour. Build a minimal working example (MWE) that shows this.lemonicetea wrote:[…] I found that the page numbers of both abstract and contents will be automatically set to 1. […]
Best regards and welcome to the board
Thorsten¹
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 17
- Joined: Sat Oct 10, 2009 9:28 pm
How can I number from the title page to the end of the doc?
Code: Select all
\documentclass[a4paper,12pt,oneside]{report}
\usepackage{graphicx}
\usepackage[left=4.5cm,right=2.5cm]{geometry}
\usepackage{epsfig}
\usepackage[margin=10pt,font=footnotesize,labelfont=bf]{caption}
\usepackage[singlespacing]{setspace}
\usepackage[round]{natbib}
\usepackage{booktabs}
\usepackage{setspace}
\usepackage[version=3]{mhchem}
\usepackage{fancyhdr}
\usepackage{units}
\usepackage{nomencl}
\renewcommand{\nomname}{List of Abbreviations}
\makenomenclature
\setcounter{secnumdepth}{3}
\begin{document}
\begin{titlepage}
Manual titlepage format here
\newpage \vspace*{8cm}
here goes dedication
\end{titlepage}
\onehalfspacing
\tableofcontents
\listoffigures
\listoftables
\setstretch{0.8}
\nomenclature{PDB}{Protein Data Bank} %abbreviation
\printnomenclature[3cm]
\doublespacing
\chapter{blah}
\section{blah-blah}
here goes my thesis text
\begin{spacing}{1}
\bibliographystyle{kluwer}
\bibliography{./biblio}
\end{spacing}
\end{document}
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
How can I number from the title page to the end of the doc?
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 17
- Joined: Sat Oct 10, 2009 9:28 pm
Re: How can I number from the title page to the end of the doc?
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
How can I number from the title page to the end of the doc?
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 17
- Joined: Sat Oct 10, 2009 9:28 pm
How can I number from the title page to the end of the doc?
Code: Select all
\documentclass[a4paper,12pt,oneside]{report}
\usepackage{graphicx}
\usepackage[left=4.5cm,right=2.5cm]{geometry}
\usepackage{epsfig}
\usepackage[margin=10pt,font=footnotesize,labelfont=bf]{caption}
\usepackage[singlespacing]{setspace}
\usepackage[round]{natbib}
\usepackage{booktabs}
\usepackage{setspace}
\usepackage[version=3]{mhchem}
\usepackage{fancyhdr}
\usepackage{units}
\usepackage{nomencl}
\renewcommand{\nomname}{List of Abbreviations}
\makenomenclature
\setcounter{secnumdepth}{3}
\begin{document}
\begin{titlepage}
Manual titlepage format here
\end{titlepage}
%here goes dedication
\newpage \vspace*{8cm}
here goes dedication
\newpage
%abstract
\begin{abstract}
here goes abstract.I have two pages of these
\end{abstract}
\onehalfspacing
\tableofcontents
\listoffigures
\listoftables
\setstretch{0.8}
\nomenclature{PDB}{Protein Data Bank} %abbreviation
\printnomenclature[3cm]
\doublespacing
\chapter{blah}
\section{blah-blah}
here goes my thesis text
\begin{spacing}{1}
\bibliographystyle{kluwer}
\bibliography{./biblio}
\end{spacing}
\end{document}
1.The page number start from 1 at 'dedication' page..I want it to start from 2 at 'dedication' page
2.The abstract restart the page numbering from 1 and without displaying it. However, the 2nd page of abstract will show a page number of 2.
3.the 'table of contents' now have a page number 1 as well.
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
How can I number from the title page to the end of the doc?
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 17
- Joined: Sat Oct 10, 2009 9:28 pm