I'm looking for a solution to put on empty pages generated by cleardoublepage a centered text "empty page". What I want is, that all sections open right and I there added a empty page, this page should marked with "empty page".
\documentclass[11pt,a4paper,twoside,openright,
notitlepage,cleardoublepage=empty,
ngerman]{article}
\usepackage[a4paper,
bindingoffset=1cm,margin=2cm,
includeheadfoot,
% top=25mm, bottom=25mm,
% headheight=15mm, headsep=7mm
]{geometry}
\usepackage{babel}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{textcomp} % Load the TS1-encoding e.g. through textcomp
\usepackage{verbatim, environ}
\usepackage{lmodern}
\usepackage{amsmath,amsfonts,amssymb}
\usepackage{blindtext}
\begin{document}
\section{eins}
\blindtext
\cleardoublepage
\section{zwei}
\blindtext
\cleardoublepage
\section{drei}
\blindtext
\blindtext
\blindtext
\Blindtext
\cleardoublepage
\section{vier}
\blindtext
\blindtext
\blindtext
\Blindtext
\end{document}
1st modified exsample
In attention to your comments here a new example. This shows how it should look like. Only the mark "empty page" is missing. The functionality of cleardoublepage and the head and foot have to be untouched.
The functionality I mean is: cleardoublepage only insert a empty page if the last section ends on an odd page (old section: odd page -> cleardoublepage: empty even page -> next section: odd page). In case of a section ends on an even page cleardoublepage hast no effects. (old section: odd page -> cleardoublepage: no page inserted -> next section: odd page)
\documentclass[11pt,a4paper,twoside,
notitlepage,
ngerman]{article}
\usepackage[a4paper,
bindingoffset=1cm,margin=2cm,
includeheadfoot,
]{geometry}
\usepackage{babel}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{textcomp} % Load the TS1-encoding e.g. through textcomp
\usepackage{verbatim, environ}
\usepackage{lmodern}
\usepackage{amsmath,amsfonts,amssymb}
\makeatletter
\def\ps@vakatseite{%
\vspace*{\fill}
\centering This page would be intentionally left blank if we would not wish to inform about that.
\vspace{\fill}
}
\makeatother
\newcommand{\newsection}[1]
{{\cleardoublepage}
\section{#1}
}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead[OL]{\scshape\leftmark}
\fancyhead[ER]{\scshape\leftmark}
\fancyhead[EL,OR]{\thepage}
\fancyfoot[OL]{\scshape\leftmark}
\fancyfoot[ER]{\scshape\leftmark}
\fancyfoot[EL,OR]{\thepage}
\renewcommand{\footrulewidth}{0.5pt}
\usepackage{blindtext}
\begin{document}
\newsection{eins}
\blindtext
\newsection{zwei}
\blindtext[3]
\newsection{drei}
\blindtext[8]
\newsection{vier}
\blindtext[4]
\end{document}
If I use
\clearpage{\pagestyle{vakatseite}\cleardoublepage}
I will get one or two empty pages with one marked page. I want zero or one page instead...

Final Code
Thanks to Harish Kumar. This solution is fully what I want :)
\documentclass[11pt,a4paper,twoside,
notitlepage,
ngerman]{article}
\usepackage[a4paper,
bindingoffset=1cm,margin=2cm,
includeheadfoot,
]{geometry}
\usepackage{babel}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{textcomp} % Load the TS1-encoding e.g. through textcomp
\usepackage{verbatim, environ}
\usepackage{lmodern}
\usepackage{amsmath,amsfonts,amssymb}
\makeatletter
\def\emptypage@emptypage{%
\hbox{}%
\vspace*{\fill}
\begin{center}
This page would be intentionally left blank\\ if we would not wish to inform about that.
\end{center}
\vspace{\fill}
\newpage%
}%
\def\cleardoublepage{%
\clearpage%
\if@twoside%
\ifodd\c@page%
% do nothing
\else%
\emptypage@emptypage%
\fi%
\fi%
}%
\makeatother
\newcommand{\newsection}[1]
{\cleardoublepage
\section{#1}
}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead[OL]{\scshape\leftmark}
\fancyhead[ER]{\scshape\leftmark}
\fancyhead[EL,OR]{\thepage}
\fancyfoot[OL]{\scshape\leftmark}
\fancyfoot[ER]{\scshape\leftmark}
\fancyfoot[EL,OR]{\thepage}
\renewcommand{\footrulewidth}{0.5pt}
\usepackage{blindtext}
\begin{document}
\newsection{eins}
\blindtext
\newsection{zwei}
\blindtext[3]
\newsection{drei}
\blindtext[7]
\newsection{vier}
\blindtext[4]
\end{document}


openright,cleardoublepage=emptyandnotitlepagesupposed to do? I didn't think (1) applied toarticle. I can't find (2) in any of thebasefiles for LaTeX, and I thought (3) was default forarticle. EDIT: I guess (2) is fromkoma-scriptbut I don't think it will have any effect here. Indeed, latex complains that the following global options are unused:[openright,cleardoublepage=empty]. – cfr Feb 20 '14 at 00:57articledocument class or would you be willing to use another one (scrartclormemoir, for example)? – Gonzalo Medina Feb 20 '14 at 01:18article.cleardoublepage=emptydoes zilch witharticle.notitlepageis default anyway. Witharticle. If you are getting different results, you are either loading additional packages which make use of those global options or you are using a different class. – cfr Feb 20 '14 at 21:57