I am facing a few (very small and unimportant) problems with changing font colours on my LaTeX template.
I want to introduce font colour for every heading level and an horizontal bar below chapter/section titles. I used the sectsty package, with
\color
and \sectionrule
:
Code: Select all
\usepackage{sectsty,ulem}
\definecolor{bleu1}{RGB}{0,51,128}
\chaptertitlefont{\color{bleu1}\sectionrule{0pt}{0pt}{-5pt}{0.8pt}}
\chapternumberfont{\color{bleu1}}
\subsectionfont{\color{bleu1}}
\sectionfont{\color{bleu1}\sectionrule{0pt}{0pt}{-5pt}{0.8pt}}
Code: Select all
\usepackage{tocloft}
\renewcommand*\cftchapfont{\color{bleu1}\bfseries}
Does anyone of you have an idea about how to proceed to keep the colour of "content", the bar and the coloured chapter on the ToC?
The other problems I met was, in spite of the sectsty package, the "appendices" front page before appendices remains black (the one generated from the appendix package), and I don't know how to change font colour for fancyhdr headings and footers.
Cheers in advance

Edit:
In case it may be relevant, it uses the report class.
Code: Select all
\documentclass[twoside,10pt,report]{report}