I am using the book document class and I want to produce a document with several parts, chapters, sections, sections and subsections. I would like to make it easier for the reader by coloring everything with respect to parts. For instance, I would like:
- The title for Part A to be blue
- The chapter titles inside Part A to be blue
- All the heading for the chapter titles in Part A to be blue
and then..
- The title for Part B to be red
- The chapter titles inside Part B to be red
- All the heading for the chapter titles in Part B to be red
etc..
Would anybody be able to help with something like that? Thanks a lot in advance!
PS. The beginning of my document looks like this:
\documentclass[11pt,letterpaper]{book}
\usepackage{amsfonts,amsthm,amssymb}
\usepackage[tbtags]{amsmath}
\usepackage{color}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead[LE,RO]{\slshape\thepage}
\fancyhead[RE]{\slshape \leftmark}
\fancyhead[LO]{\slshape \rightmark}
\renewcommand{\thepart}{\Alph{part}}
\renewcommand{\thechapter}{\Roman{chapter}}




