I am writing a paper with the article document class. The first page contains a large footer than other pages. I want to make it filled with text like the other pages and contains the same footer. a minimal working code is:
\documentclass[11pt]{article}
%\usepackage[width=5cm,height=20cm]{geometry}
\usepackage[b5paper,lmargin=2cm,rmargin=2cm,tmargin=2.5cm,bmargin=4.3cm]{geometry}
\usepackage{graphicx} % for pdf, bitmapped graphics files
%\usepackage{indentfirst}
\usepackage{amsmath} % assumes amsmath package installed
\usepackage{amssymb} % assumes amsmath package installed
%\usepackage{deleq} % to divide on equation
%\usepackage{bbm} % to represent the space dimension
%\usepackage{bbding} % to represent the space dimension
\usepackage{dsfont} %to represent the space dimension
\usepackage{color}
\usepackage{algorithm}
\setcounter{secnumdepth}{3}
\usepackage{multicol}%%%%%%%%%%%%
%\usepackage{lipsum}%%%%%%%%%%%%%%%%%%%
\usepackage{theorem}
\newtheorem{theorem}{Theorem}
\newcounter{tempcount}
\graphicspath{{figures/}}
\usepackage[T1]{fontenc}
\usepackage{mathptmx}
\usepackage{titlesec}
\titleformat{\section}[block]
{\fontsize{12}{15}\bfseries\rmfamily}
{\thesection}
{1em}
{}
\titleformat{\subsection}[hang]
{\fontsize{12}{15}\itshape\rmfamily}
{\thesubsection}
{1em}
{}
\titleformat{\subsubsection}[hang]
{\fontsize{12}{15}\itshape\rmfamily}
{\thesubsubsection}
{1em}
{}
%\usepackage{fontspec}
%\setmainfont{Times New Roman}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead{}
\fancyfoot{} %\fancyfoot[LE,RO]{\thepage}
%\fancyhead[L] {\thepage\\}CO,CE
%\fancyhead[le,ro]{}
\fancyhead[le,ro]{\thepage\\ \it{LPVIOID-Toolbox .}}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0.4pt}
%\headsep=10pt
\footskip=13pt
\titlespacing\section{0pt}{6pt}{6pt}
\titlespacing\subsection{0pt}{6pt}{6pt}
\titlespacing\subsubsection{0pt}{6pt}{6pt}
\renewcommand*{\thefootnote}{\fnsymbol{footnote}}
\newcommand{\ParGraph}{\\ \indent}
\usepackage[noblocks]{authblk}
\title{\bfseries \fontsize{13}{15}\selectfont
LPVIOID- toolbox}
\author[ ]{\bfseries \fontsize{11}{13}\selectfont Mustafa Rabeei}
\affil[ ]{\itshape \fontsize{10}{15}\selectfont Electrical Engineering Department.
E-mails: {\tt eng.mustafa.rabeay@gmail. }}
\usepackage{lipsum}
\begin{document}
\date{}
\graphicspath{{figures/}}
\maketitle
\thispagestyle{fancy}
%\thispagestyle{empty}
%\pagestyle{empty}
%\pagestyle{headings}
\setcounter{page}{1}
\pagenumbering{arabic}
\section{the first section}
\lipsum
\section{the second section}
\lipsum[1-10]
\end{document}