Well, I'm using a such a code bellow, basically I would like to add ornaments to the numbering of this chapter... Any ideas, examples please? thanks a lot
\renewcommand{\chaptermark}[1]{\markboth{#1}{}}
\makeatletter
\def\@makechapterhead#1{%
\vspace*{50\p@}%
{\parindent \z@ \raggedright \normalfont
%\ifnum \c@secnumdepth >\m@ne
% \huge\bfseries \@chapapp\space \thechapter
% \par\nobreak
% \vskip 20\p@
%\fi
\interlinepenalty\@M
\Huge \bfseries #1\par\nobreak
\vskip 40\p@
}}
\makeatother
% Datei fancyheaders.tex
% Kopf- und Fu�zeile mit Paket fancyhdr
% Paket muss extra installiert werden
\usepackage{fancyhdr} % Paket laden
\pagestyle{fancy} % bereitgestelltes Layout 'fancy' laden
% Am Anfang jeder neuen \section wird deren Name in die linke Kopfzeile geschrieben, dazu neuen command definieren
%\renewcommand{\sectionmark}[1]{\markboth{\thesection\ #1}{}}
% Am Anfang jeder neuen \subsection wird deren Name in die rechte Kopfzeile geschrieben, dazu neuen command definieren
%\renewcommand{\subsectionmark}[1]{\markright{\thesubsection\ #1}}
% Die so erzeugten Inhalte stehen jetzt mit den Befehlen
% \leftmark und \rightmark zur Verf�gung und k�nnen wie im folgenden eingesetzt werden:
% \lhead[\rightmark]{\rightmark}
%\renewcommand{\chaptermark}[1]{\markboth{\thechapter\ #1}{}}
\renewcommand{\sectionmark}[1]{\markright{\textsl{\thesection\ #1}}}
%%\renewcommand\chaptermark[1]{\markboth{\textsl{\chaptername\ \thechapter\ : #1}}{}}
%\renewcommand{\chaptermark}[1]{\markboth{#1}{}}
\makeatletter
\def\@makechapterhead#1{%
\vspace*{50\p@}%
{\parindent \z@ \raggedright \normalfont
%\ifnum \c@secnumdepth >\m@ne
% \huge\bfseries \@chapapp\space \thechapter
% \par\nobreak
% \vskip 20\p@
%\fi
\interlinepenalty\@M
\Huge \bfseries #1\par\nobreak
\vskip 40\p@
}}
\makeatother
\usepackage[T1]{fontenc}
\usepackage{titlesec}
\usepackage{xcolor}
\usepackage{blindtext}
\newcommand{\chapnumfont}{% % define font for chapter number
\usefont{T1}{pnc}{b}{n}% % choose New Chancery, bold, normal shape
\fontsize{100}{100}% % font size 100pt, baselineskip 100pt
\selectfont% % activate font
}
\colorlet{chapnumcol}{gray!100} % color for chapter number
\titleformat{\chapter}[display]
{\filleft\bfseries}
{\filleft\chapnumfont\textcolor{chapnumcol}{\thechapter}}
{-24pt}
{\Huge}
\fancyhead{}
%\fancyhead[L]{\leftmark}
\fancyhead[L]{}
\fancyhead[R]{}%{\rightmark}
\fancyfoot{}
\fancyfoot[L]{}
\fancyfoot[C]{}%{\leftmark}
\fancyfoot[R]{\thepage}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0.4pt}
% Style "plain" berschreiben, das bei
%\chapter{...} mit aktiviert wird
\fancypagestyle{plain}{
\lhead{}
\chead{}
\rhead{}
\lfoot{}
\cfoot{}
\rfoot{\thepage}
\renewcommand{\headrulewidth}{0.0pt}
\renewcommand{\footrulewidth}{0.4pt}}



