I'm new at latex and I'm writing my thesis with it (using report class). My abstract is very long (5 pages) due to the requirments. As a result, my output looks very funny - an empty page with the word "abstract" written in the buttom and then the long abstrct which isn't numbered. The first page after the abstract is numbered 2. Why? How can I fix all of that?
Here is the code:
Code: Select all
\documentclass[12pt, a4paper, twoside]{report}
\usepackage{amsmath}
\usepackage{graphicx}
\graphicspath{{figures//}}
\usepackage{setspace}
\onehalfspacing
\setlength{\parindent}{1cm}
\usepackage{indentfirst}
\usepackage[top=2.54cm, bottom=2.54cm, left=2.54cm, right=2.54cm, nohead]{geometry}
\usepackage[normalem]{ulem}
\allowdisplaybreaks[3]
\begin{document}
\input{./title.tex}
\input{./first.tex}
\input{./second.tex}
\input{./thanks.tex}
\begin{abstract}
\thispagestyle{empty}
very long text
\end{abstract}
Thanks.