At the end of my document, I placed appendices, where the title of each appendix is a chpater title. The problem is that, every new appendix starts a new page, and I want them to start immediately after the end of the previous chapter(appendix).
Furthermore, how can I eliminate the page at which the title "Appendices" is written at it, preceeding the actual contents of appendices, and place it("Appendices")just before the first appendix's title? The following code is a complementary code for this explanation:
Code: Select all
\documentclass[a4paper,12pt,openany]{memoir}
\usepackage{appendix}
\begin{document}
\appendixpage
\appendix
\chapter{appendix 1}
\chapter{appendix2}
\end{document}