¿Cómo colorear el fondo del encabezado?

¿Cómo colorear el fondo del encabezado?

ingrese la descripción de la imagen aquí

ingrese la descripción de la imagen aquí ¡¡Hola!! He hecho este encabezado pero no puedo configurar los colores de fondo. Soy nuevo en el Latex y lo encuentro muy dificil. ¿Alguien podría ayudarme por favor?

Mi trabajo es ese:

\documentclass[14pt,a4paper,twoside]{book}
\usepackage[T1]{fontenc}
\usepackage{titlesec, color}
\usepackage{theorem}
\newtheorem{worked example}{Worked Example}[chapter]
\newtheorem{solution}{SOLUSION}[chapter]
\usepackage{anyfontsize}
\usepackage{amsfonts}
\usepackage{textcomp}
\usepackage{enumerate}
\usepackage{fancyhdr}
\pagestyle{fancy}

\fancyhead{}
\renewcommand{\chaptermark}[1]{\markboth{\textbf{\thechapter \ | \ #1}}{}}
\fancyhead[LE]{\hspace{30pt}\textbf{\thepage} \hspace{20pt} \leftmark}
\renewcommand{\sectionmark}[1]{\markright{\textbf{\thesection \ | \ #1}}}
\fancyhead[RO]{\rightmark \hspace{20pt} \textbf{\thepage} \hspace{30pt}}
\fancyfoot{}
\addtolength{\headwidth}{\marginparsep}
\addtolength{\headwidth}{\marginparwidth}
\renewcommand{\headrulewidth}{}
\renewcommand{\footrulewidth}{}

\setlength\headheight{50pt}

\newcommand{\hsp}{\hspace{20pt}}
\newcommand{\ntl}{\newline \newline}

\titleformat{\chapter}[hang]{\fontsize{50}{60}\bfseries\color[rgb]{0,0.5,0.75}}{\thechapter\hsp\fontsize{90}{60}\selectfont\textcolor{black}{|}\hsp}{0pt}{\Huge\bfseries}

\titleformat{\section}{\large\bfseries}{}{0pt}{\textcolor[rgb]{0,0.5,0.75}{Topic \thesection} \ }[{\titlerule[0.8pt]}]

\begin{document}
\chapter{\textcolor{black}{NUMBER}}
\section{BIDMAS.}
\thispagestyle{empty}
.
.
.
.
.
\end{document}

Respuesta1

Aquí hay una solución con titleps, en lugar de fancyhdr: simplemente cargar titleseccon la opción pagestyles. No tendrás que luchar con las marcas: solo usa \sectiontitley \chaptertitlecuando definas un nuevo estilo de página. \thispagestyle{empty}Es muy posible que se incorpore a \titleformat[\chapter}, ya que ahorrará tener que escribirlo en cada nuevo capítulo.

\documentclass[14pt,a4paper,twoside]{extbook}
\usepackage[utf8]{inputenc} %
\usepackage[T1]{fontenc}
\usepackage{lmodern} %
\usepackage[pagestyles]{titlesec}
\usepackage[x11names]{xcolor} %
\usepackage{theorem}
\newtheorem{worked example}{Worked Example}[chapter]
\newtheorem{solution}{SOLUTION}[chapter]
%\usepackage{anyfontsize}
\usepackage{amsfonts}
\usepackage{textcomp}
\usepackage{enumerate}
\setlength\headheight{21pt}

\newcommand{\hsp}{\hspace{20pt}}
\newcommand{\ntl}{\newline \newline}

\titleformat{\chapter}[hang]{\fontsize{50}{60}\bfseries\color[rgb]{0,0.5,0.75}}{\thechapter\hsp\fontsize{90}{60}\selectfont\textcolor{black}{|}\hsp}{0pt}{\thispagestyle{empty}\Huge\bfseries}

\titleformat{\section}{\large\bfseries}{}{0pt}{\textcolor[rgb]{0,0.5,0.75}{Topic \thesection} \ }[{\titlerule[0.8pt]}]

\usepackage{blindtext}

\newpagestyle{mine}{%
\setlength\fboxsep{10pt}
\sethead[\bfseries\llap{\colorbox{SteelBlue3}{\parbox{\dimexpr\marginparsep + \marginparwidth\relax}{\hspace{20pt}\color{white}\thepage\vphantom{|}}}}%
\colorbox{SlateGray2!40}{\parbox{\dimexpr\linewidth-2\fboxsep}{~\thechapter~|\hspace{0.75em}\chaptertitle}}][][]%
{}{}{\bfseries\colorbox{SlateGray2!40}{\parbox{\dimexpr\linewidth-2\fboxsep}{\thesection~|\hspace{0.75em}\sectiontitle}}%
\rlap{\colorbox{SteelBlue3}{\parbox{\dimexpr\marginparsep + \marginparwidth\relax}{\hspace{20pt}\color{white}\thepage\vphantom{|}}}}}
\setfoot{}{}{}
}

\pagestyle{mine}

\begin{document}

\chapter{{NUMBER}}%\textcolor{black}
\section{BIDMAS.}
\blindtext[10]

\end{document} 

ingrese la descripción de la imagen aquí

Respuesta2

\headrulewidthy \footrulewidthson macros que deben contener una longitud. 0ptse utiliza para dejar que las reglas desaparezcan:

\renewcommand*{\headrulewidth}{0pt}
\renewcommand*{\footrulewidth}{0pt}

Luego, el ejemplo muestra el \colorboxcódigo de ejemplo (compilado con pdflatex):

\documentclass[a4paper,twoside]{book}
\usepackage[T1]{fontenc}
\usepackage{color}
\usepackage{fancyhdr}
\pagestyle{fancy}

\fancyhead{}
\renewcommand{\chaptermark}[1]{%
  \markboth{\textbf{\thechapter \ | \ #1}}{}%
}
\fancyhead[LE]{%
  \hspace{30pt}\textbf{\thepage} \hspace{20pt} %
  \colorbox[rgb]{0,0.5,0.75}{\leftmark}%
}
\renewcommand{\sectionmark}[1]{%
  \markright{\textbf{\thesection \ | \ #1}}%
}
\fancyhead[RO]{%
  \rightmark \hspace{20pt} \textbf{\thepage} \hspace{30pt}%
}
\fancyfoot{}
\addtolength{\headwidth}{\marginparsep}
\addtolength{\headwidth}{\marginparwidth}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}

\setlength\headheight{50pt}

\begin{document}
\chapter{\textcolor{black}{NUMBER}}
\section{BIDMAS.}
\thispagestyle{empty}

\newpage
Foo.
\newpage
Bar.
\end{document}

Resultado, página 2

información relacionada