I am writing my thesis using \documentclass{report} so that I will have chapters. I have used
\renewcommand{\thepage}{\roman{page}}% Roman numerals for page counter
at the beginning in order to use roman numbering before the first chapter begins. Then I have used
\renewcommand{\thepage}{\arabic{page}}% Arabic numerals for page counter
\setcounter{page}{1}% Start page number with 1
just before the first chapter begins in order to use arabic numbering for the rest of the thesis. However, I noticed that the last few pages, which include the last page of my list of tables and my bibliography, use roman numbering. The start and end of my .tex file looks like this...
Start:
\documentclass[a4paper,11pt]{report}
\usepackage[latin1]{inputenc}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{graphicx,color}
\usepackage{epsfig}
\usepackage{epstopdf}
\usepackage{dcolumn}
\usepackage{bm}
\usepackage{mathrsfs}
\usepackage{dsfont}
\usepackage{setspace}
\usepackage[toc,page]{appendix}
\usepackage[
asymmetric,
lmargin=4cm,
rmargin=2cm,
tmargin=2cm,
bmargin=2cm
]{geometry}
%user defined terms
\newcommand{\nspace}{\!\!\!\!\!\!\!} % used to take out space between sum and integral symbols
\newcommand{\avg}[1]{\left< #1 \right>} % for average
\renewcommand{\thepage}{\roman{page}}% Roman numerals for page counter
\setcounter{page}{1}% Start page number with 1
%opening
\title{}
\date{}
\begin{document}
\maketitle
End:
\listoffigures
\clearpage
\listoftables
\end{normalsize}
\clearpage
\bibliographystyle{ieeetr}
\bibliography{Thesis}
\end{document}
I have tried changing the end to:
\listoffigures
\clearpage
\renewcommand{\thepage}{\arabic{page}}% Arabic page numbers
\listoftables
\end{normalsize}
\clearpage
\bibliographystyle{ieeetr}
\bibliography{Thesis}
\end{document}
to force the page numbering to arabic, but this doesn't work. I've also tried
\listoffigures
\clearpage
\renewcommand{\thepage}{\arabic{page}}% Arabic page numbers
\listoftables
\end{normalsize}
\clearpage
\renewcommand{\thepage}{\arabic{page}}% Arabic page numbers
\bibliographystyle{ieeetr}
\bibliography{Thesis}
\end{document}
This returns the bibliography pages to arabic numbering, but the page before, with the last part of the list of tables on it, still has a roman numeral.
What can I do to make ALL pages from chapter 1 onward use arabic numbering?
\documentclass{...}, the required\usepackage's,\begin{document}, and\end{document}. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem.\pagenumbering{arabic}and\pagenumbering{roman}do the job just fine. – Johannes_B Sep 05 '14 at 18:12\normalsizeis a command - not an environment. – cfr Sep 05 '14 at 18:13\begin{section}...\end{section}etc. :( ] – cfr Sep 05 '14 at 20:02normalsizeenvironment defined? – Mico Sep 06 '14 at 15:02