[Tex/LaTex] Page numbering only in first page and not in all the document

articlepage-numbering

I am only getting the first page numbered and subsequently it is not numbering the following pages. The error starts after the article title which depicts the abstract and then starts with the text, therefore I cannot use \clearpage.
I have attached some code here.

    \documentclass[a4paper,twoside,10pt]{article}
    \input{includes/packages}
    \begin{document}

        \input{includes/titlePage}
        \pagenumbering{arabic}

        \section*{\normalsize{ABSTRACT}}
        {\textit{....}}
        \paragraph*{Keywords : }

        \input{./sections/00Introduction}

        \input{./sections/01Section1}


        \nopagebreak
        \input{./sections/05Section5}
        \nocite{*}
        \printbibliography
    \end{document}

Additionally, the problem might be cause from the includes\titlePagewhich I am attaching here:

% On the header of the title page
\thispagestyle{fancy}
\renewcommand{\headrulewidth}{0pt}
%\lhead{}
\lhead{\includegraphics[height=0.8cm]{./images/Uni-logo.png} \\\textit{Chair of Uni}}
\pagenumbering{gobble}

% On the authors and the title of the project
\long\def\symbolfootnote[#1]#2{\begingroup%
\def\thefootnote{\fnsymbol{footnote}}\footnote[#1]{#2}\endgroup}
\vspace*{3 mm}
\begin{center}\huge{\textbf{Title of article}}\\[10pt]\end{center}
\begin{center} \textbf{Author}\\[5pt]\end{center}

Best Answer

\pagenumbering{gobble} is a not-really-good way how to hide page numbers (and possibly confuse LaTeX). You seem not to want to hide them, so you probably want to remove this line.

Related Question