[Tex/LaTex] Add figure to the Appendix

appendicesgraphics

I am trying to add some figures (class diagrams and sequence diagrams) to the appendix but I dont know how can I include them in the appendix part. How can I include them to the Appendix part in this template below?

Latex Template from the university

\documentclass[
    english,
    german,
    11pt,
    twoside,
    a4paper,
    BCOR8.25mm,
    DIV10,
    headsepline,
    footsepline
]{scrbook}
\include{commands}

\begin{document}

\selectlanguage{english}
\frontmatter



%---------------------------------------------------------------------------
% Frontpage
%---------------------------------------------------------------------------
    \input{0-titlepage.tex}

%---------------------------------------------------------------------------
% list of contents
%---------------------------------------------------------------------------
    \tableofcontents
    \cleardoublepage

%---------------------------------------------------------------------------
% The actual content
%---------------------------------------------------------------------------
    \mainmatter
    \pagestyle{fancy}

    \include{1-introduction}    

    \include{6-conclustion}


%---------------------------------------------------------------------------
% Appendix
%---------------------------------------------------------------------------
    \appendix

        \listoffigures

        \listoftables

        \lstlistoflistings

        %---------------------------------------------------------------------------

    %using: \abk{Abk.}{Abkürzung}
        \printnomenclature

        \bibliographystyle{ieeetr}
        \bibliography{bibliography}

    \printindex



\end{document}

Figure example:

\begin{figure}[H]
    \centering
  \includegraphics[width=1.0\textwidth, height=200px]{images/injection}
    \caption{Class diagram of injection procedure in the service provider. }
    \label{fig2}
\end{figure}

Edit:
When I added them normal as this

    \appendix

        \listoffigures

        \listoftables

        \lstlistoflistings

        \newpage

\begin{figure}[H]
    \centering
  \includegraphics[width=1.0\textwidth, height=200px]{images/injection}
    \caption{Class diagram of injection procedure in the service provider. }
    \label{fig2}
\end{figure}

I am getting Listing at the top of the page. I want it without Listing at the top.

Best Answer

I don't know rules, which you need to obey on composing your book (or thesis). Even your question is not very clear to me. So I only guess, that you looking for something like this:

\documentclass[
    english,
    11pt,
    twoside,
    a4paper,
    BCOR8.25mm,
    DIV10,
    headsepline,
    footsepline
]{scrbook}

\include{commands}

    \begin{document}
\frontmatter
%---------------------------------------------------------------------------
% Frontpage
%---------------------------------------------------------------------------
    \input{0-titlepage.tex}
%---------------------------------------------------------------------------
% list of contents
%---------------------------------------------------------------------------
    \tableofcontents
    \cleardoublepage
%---------------------------------------------------------------------------
% The actual content
%---------------------------------------------------------------------------
    \mainmatter
    \pagestyle{fancy}
\include{1-introduction}
\include{6-conclustion}

%---------------------------------------------------------------------------
% Appendix
%---------------------------------------------------------------------------
\cleardoublepage
    \appendix
\chapter{Appendix}% <-- this title should appear on page header
%---------------------------------------------------------------------------
% Figure
%---------------------------------------------------------------------------
    \begin{figure}[h]
    \centering
\includegraphics[width=\textwidth, height=200px]{images/injection}
    \caption{Class diagram of injection procedure in the service provider. }
\label{fig2}
    \end{figure}
\cleardoublepage
    \listoffigures
\cleardoublepage
    \listoftables
\cleardoublepage
    \lstlistoflistings
%---------------------------------------------------------------------------
\cleardoublepage
    %using: \abk{Abk.}{Abkürzung}
        \printnomenclature

    \bibliographystyle{ieeetr}
    \bibliography{bibliography}

    \printindex
%---------------------------------------------------------------------------
    \end{document}

Above code will generate Appendix on new od page, where will place your image, than on the next odd page will follows list of figures, etc. Is this what you looking for?