I'm trying to get the word Appendix in front of my appendix chapter titles. I would like it to look like:
Appendix A My first appendix
I tried the appendix package, using \usepackage[title,titletoc]{appendix}. Somehow this works in the toc but not in the title on the page itself. How can add it for the title as well?
Here what I got:
\documentclass[pdftex,parskip=half,twoside, BCOR15mm]{scrreprt}%
\usepackage[title,titletoc]{appendix}
\usepackage{pdfpages}
\usepackage{amsmath, amssymb, fancyhdr}
\usepackage[english]{babel}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{here}
\begin{document}
\tableofcontents
\chapter{Chapter 1}
\chapter{Chapter 2}
\begin{appendices}
\chapter{Bli bla blubb}
asdasd
\end{appendices}
\end{document}

