[Tex/LaTex] How to copy a specific chapter page design

book-design

I am trying to write notes on a subject and I want to view them also in book format. The sample of a book, which I saw impressive for reading is the following one. How to make such format of book including style of font and also type of titles of chapter, titles of sections etc. The Springer publishing company has produced lot of books of this format for undergraduates and I have seen such books impressive in their writing style.

The very basic step to write book is appeared as question earlier, it says to start with

\documentclass[a4paper,11pt]{book} 
\begin{document}
\include{chapter1}
\end{document} 

but I am interested in its form also.

Thanks in advance!.

enter image description here

Best Answer

Here is an attempt at recreating the chapters. There are several things which might break:

  • two-digit chapter numbers will be too wide
  • long chapter titles will mess up the vertical alignment

From here it isn't that difficult to change the section numbers. I'll leave this task to the OP or anyone else who'd like to comment …

Here is the code so far:

\documentclass[oneside]{book}
\usepackage{bookman}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage{microtype}
\usepackage{titlesec}
\usepackage{blindtext}
\usepackage{xcolor}
\usepackage{soul}

\definecolor{gray50}{gray}{0.5}

\usepackage{tikz}
\newcommand\dottedline[1][]{%
   \tikz[baseline]\draw[line width=3pt,dotted,line cap=round,dash pattern=on 0pt off 3\pgflinewidth, gray50](0,-1.2)--(0,1.8);%
}

% \titleformat{〈command〉}[〈shape〉]{〈format〉}{〈label〉}{〈sep〉}{〈before-code〉}[〈after-code〉]

\titleformat%
    {\chapter}% command
    [hang]% shape
    {\Huge\bfseries}% format
    {\raisebox{0pt}[0pt][4\baselineskip]{%
        \begin{minipage}{25mm}
            \raisebox{12mm}{\parbox{25mm}{\centering\fontsize{90}{90}\normalfont\bfseries\textcolor{gray50}{\thechapter}\\[4mm]\normalsize\bfseries\textcolor{gray50}{\so{CHAPTER}}}}%
        \end{minipage}\hspace{10mm}\dottedline
        }
    }% label
    {10mm}% sep
    {}% before-code
    []% after-code

\begin{document}
\chapter{Introduction}
\blindtext
\chapter{Second Chapter}
\end{document}

This is the output:

first chapter


second chapter