I am currently using the appendix package and would like to add some form of header to the appendix section.
For example currently my appendix starts with Appendix A as its title, I would like it to look like
APPENDIX
Appendix A
Title of Appendix A
Appendix A Content
new page
Appendix B
Title of Appendix B
Appendix B Content
and so on...
Without a page break between the Appendix and Appendix A headers just a newline.
My current latex setup is below, inputs are just individual chapters.
\usepackage{appendix}
....
\begin{appendices}
\input{appendix-outline}
\end{appendices}
Inside the appendix-outline I have
\input{appendices/test1}
\input{appendices/test2}
\input{appendices/test3}
which are just files with a this heading
\chapter{test1}
text goes here

appendix-outline.tex? Most likely you have\chapters, correct? Do you have access to edit that file? Could you provide us with that file in the form of some dummy code? – Werner Jun 15 '16 at 00:47