You should use a package like the modern acro to deal with acronyms. Right now, if you are still beginning, you might end up in a mess.
The abstract of reports is set using the titlepage-environment, which uses the
empty
pagestyle. You can change this by issuing
\thispagestyle{plain}
. Surprise, the page number appears, but it is one. What happended there?
Well, that was a design decision made by Leslie Lamport a long time ago and is kept for compatibility reasons. The more modern classes of memoir and KOMA do not have this special flaw.
We can come around this using package etoolbox and patch the original commands.
Code: Select all
\documentclass[12pt,a4paper]{report}
\usepackage{etoolbox}
\patchcmd{\abstract}{\titlepage}{\clearpage}{}{}
\patchcmd{\andabstract}{\endtitlepage}{\clearpage}{}{}
\newcommand{\newacronym}[2]{#1\tabularnewline}
\usepackage{unnumberedtotoc}%https://github.com/johannesbottcher/unnumberedtotoc
\usepackage{blindtext}
\usepackage{array}
\begin{document}
\title{precipitation and climate mode}
\pagenumbering{roman}
\setcounter{page}{2}
\tableofcontents
\listoffigures
\listoftables
\clearpage % Start a new page
\addchap{Acronyms}%provided by unnumberedtotoc
\begin{tabular}{>{\bfseries}ll}
\newacronym{CMAP}{\textbf{CPC} \textbf{M}erged \textbf{A}nalysis of \textbf{P}recipitation}
\newacronym{SWIO}{\textbf{S}outhern \textbf{W}estern \textbf{I}ndian \textbf{O}cean}
\end{tabular}
\begin{abstract}
\blindtext
\end{abstract}
\cleardoublepage%%%very important
\pagenumbering{arabic} % restart page numbers at one, now in arabic style
\chapter{Chapter name}
\blindtext
\blinddocument
\end{document}
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.