I want to put blank pages after title page, acknowledgement, abstract, ant etc. and also I want to strat a new chapter in a right side page. my codes are below.
\documentclass[12pt]{article}
\usepackage{packs}
\begin{document}
\input{titlepage}
\pagenumbering{roman}
\input{chapters/ack}
\pagebreak
\tableofcontents
\pagebreak
\listoftables
\pagebreak
\listoffigures
\pagebreak
\newcommand{\listequationsname}{List of Equations}
\newlistof{myequations}{equ}{\listequationsname}
\newcommand{\myequations}[1]
{
\addcontentsline{equ}{myequations}{\protect\numberline{\theequation}#1}\par
}
\setlength{\cftmyequationsnumwidth}{2.5em}
\listofmyequations
\pagebreak
\pagenumbering{arabic}
\input{chapters/ab}
\pagebreak
\input{chapters/introduction}
\pagebreak
\input{chapters/aim}
and so on
\bibliographystyle{plain}
\bibliography{href}
\pagebreak
\input{chapters/ap}
\end{document}
How can I do them?
