0

I am trying to recreate the design of the section shown in the attached image using LaTeX.

I would appreciate a LaTeX example or any suggestions on which packages (like tcolorbox or others) would help me achieve this.

Thank you for your assistance!

\documentclass[a4paper,12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[margin=2.5cm]{geometry}
\usepackage{xcolor}
\usepackage{fancyhdr}
\usepackage{graphicx}

\definecolor{titlecolor}{RGB}{34, 34, 34} % Noir
\definecolor{bluecolor}{RGB}{0, 119, 179} % Bleu foncé

\pagestyle{fancy}
\fancyhf{} % Clear header and footer
\fancyfoot[C]{\textsf{\textbf{\textcolor{titlecolor}{title}} -- \textcolor{bluecolor}{\textit{sub-title}}}}

\fancyfoot[R]{
    \includegraphics[height=1cm]{test.png}
}

% Suppression de la ligne horizontale
\renewcommand{\footrulewidth}{0pt}

\begin{document}

% Contenu principal
\section*{Introduction}


\end{document}

table_of_content header

1

0

Browse other questions tagged or ask your own question.