I'm sorry, but I'm having trouble inserting a latex code example to explain this problem.
I'm writing a book on environmental hydraulics for university (nothing commercial).
I have a problem inserting a blank page between chapters. I noticed that if the chapter ends with an odd numbered page, the empty page is inserted; if the chapter ends with an even numbered page, the empty page is not inserted.
I thought of two possibilities:
- force the insertion of an "empty page"
- use this code:
\afterpage{\null\newpage}
with the code I get the insertion of two pages (which is quite natural for the book style?) but I would like to insert only one page and not two
This is the style of my preamble
\documentclass [pdftex, 10pt, a4paper] {book}
\usepackage [a4paper] {geometry}
\setlength {\ oddsidemargin} {0 mm}
\setlength {\ topmargin} {0 mm}
% \setlength {\ headheight} {7 mm}% head height
% \setlength {\ headsep} {9 mm}
\setlength {\ evensidemargin} {0 mm}
\setlength {\ marginparwidth} {0 mm}
\setlength {\ textheight} {230mm}% Text Height
\setlength {\ textwidth 150mm} {}
Do you have any suggestions please?
