[Tex/LaTex] How to remove the blank page after the main title Appendix

appendicesblank-pagememoir

I am using a thesis template. My problem is similar to
How to remove empty page after appendix and the next chapter?

Yes, I have tried all those solutions but no one works for my template.

The blank page comes out after a main title 'Appendix' which occupies one entire page and followed by a blank. Then, the 'Appendix A' comes out.

\documentclass{memoir}
\begin{document}
\appendix
\appendixpage
This is the appendix.
\end{document}

Best Answer

Try using this for your style document

\documentclass[12pt, a4paper,twoside, openany]{memoir}

the default option is openright instead of openany, and that will remove your blank pages.

EDIT :

I deleted \usepackage{frbib} and replaced your last lines by

\usepackage{lipsum} % for example
\begin{document}

\section{Section title}
\lipsum

% *************** Fin du style ***************
\frontmatter
%\input{front.tex} % I don't have this file
\mainmatter
\begin{otherlanguage}{english}     % Added on 17 April, 2014.
%\input{introduction/introduction.tex}
%\input{pubs/pubs.tex}                  % Publications
% bibliographie
\bibliographystyle{unsrt}
{\small\bibliography{bibliographie_these}}

% *************** Appendices ***************
\appendix
\appendixpage

\section{Appendix section title}
\lipsum

\end{otherlanguage}
% *************** Back matter ***************
%
\backmatter
%\input{back.tex}

\end{document}

It works just fine, so your problem should come from \input{app1/app1.tex}.