add blank page after chapter latex code example
Example 1: latex add empty line
\hfill \break
Example 2: latex blank page
\usepackage{afterpage}
\newcommand\blankpage{%
\null
\thispagestyle{empty}%
\addtocounter{page}{-1}%
\newpage}
\afterpage{\blankpage}