Working on an abstract, using the
\begin{abstract}
environmentthe roman numbering i does not show in the abstract, but shows in the table of contents page and the table of contents page have the number i
the code goes like this
Code: Select all
\documentclass[12pt]{ report}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage {Utopia}
\usepackage{setspace}
\usepackage{graphicx}
\usepackage{chapterbib}
\usepackage{tocloft}
\usepackage{longtable}
\usepackage{url}
\usepackage{booktabs}
\usepackage{float}
\usepackage{appendix}
\usepackage[Lenny]{fncychap}
\doublespacing
\begin {document}
\pagenumbering{roman}
\addtocontents{toc}{~\hfill\textbf{Page}\par}
\begin{abstract}
\addcontentsline{toc}{chapter}{Abstract}
Abstract
\end{abstract}
\newpage
\pagenumbering{roman}
\tableofcontents
\newpage
\listoftables
\addcontentsline{toc}{chapter}{List of Tables}
\newpage
\listoffigures
\addcontentsline{toc}{chapter}{List of Figures}
\newpage
\pagenumbering{arabic}
\chapter{Introduction}
\end{document}