[Tex/LaTex] How to reproduce this layout and typography

fontstypography

IMHO, some math books published by the German company Hanser have a very pleasing layout. I'm attaching an example below (screenshot from Google Books which I hope is fair use).

I guess this was done with LaTeX, but I'm not very good at figuring out fonts from just staring at them. Which settings would I have to use to reproduce a similar layout, including the fonts used for math?

Enter image description here

Best Answer

Seeing your template, in my humble opinion, it seems to use the fourier package.

Enter image description here

Here you can find several fonts with LaTeX math support: https://tug.dk/FontCatalogue/mathfonts.html

\documentclass[a4paper,12pt]{book}
\usepackage{fourier}
\usepackage[T1]{fontenc}
\usepackage{amsmath,amssymb}
\usepackage{blindtext}
\begin{document}
\chapter{My version}
\blindtext[1]
\[\pi D_n(\varphi)=\sum_{n=1}^\infty\cos (k\varphi)\]
\end{document}

Addendum

This is only a bad copy for your template :-) You can change the style of the chapter with Sonny, Lenny, etc.: Fncychap: titoli fantasiosi di capitoli in classe book LaTeX

Enter image description here

\documentclass[a4paper,12pt]{book}
\usepackage{fourier}
\usepackage[T1]{fontenc}
\usepackage{amsmath,amssymb}
\usepackage[Lenny]{fncychap}
\usepackage{xcolor}
\usepackage{titlesec}
\titleformat{\section}
  {\Large\bfseries\color{gray}{\large}}{\color{gray}{$\blacksquare\quad$}\thesection}{1em}{}
  \titleformat{\subsection}
  {\Large\bfseries\color{gray}{\large}}{\color{gray}{$\blacksquare\quad$}\thesubsection}{1em}{}
\usepackage{blindtext}
\begin{document}
\chapter{My version}
\section{Dirichlet Kernfunktionen}
\blindmathpaper
\subsection{Name 1}
\blindmathpaper
\subsubsection{Name 2}

\end{document}