Here is the picture:

The code is from this post.
\documentclass[a4paper,12pt]{book}
\usepackage{graphicx}
\usepackage{lipsum}
\usepackage{fontspec}
\usepackage{titlesec}
\setmainfont{EB Garamond 12 Regular}
\newfontfamily\cmaiusc[LetterSpace=40,WordSpace=2,RawFeature={+swsh,+dlig}]{EB Garamond 12 SC}
% Environments
\usepackage{setspace}
\newenvironment{comment}
{\begin{spacing}{0.8}\itshape\scriptsize\hspace{-1em}}
{\end{spacing}}
\newcommand{\bbook}[4][]{%
\makebox[\textwidth][c]{\includegraphics[width=6in]{#4}}
\chapter[#1]{#2,\\\large #3\\\char"2766}
\thispagestyle{empty}
\begin{center}
{\cmaiusc capitolo\ \roman{chapter}}.
\end{center}
}
\titleformat{\chapter}[hang]%
{\centering\huge}%
{}%
{0pt}%
{}
\titlespacing*{\chapter}
{0pt}{0pt}{5pt}
\begin{document}
\tableofcontents
\cleardoublepage\noindent % from here
\begin{minipage}{\textwidth}
\bbook{Analysis mathematica}{principia.}{genese_heading}
\begin{center}
\parbox{4.65in}{
\begin{comment}
comment
\end{comment}
}
\end{center}
\end{minipage}
\vspace{\baselineskip} % to here
\lipsum[1-10]
\end{document}
Is possible replace the \bbook command in this code with the classic \chapter command but that incorporate all the code enclosed into the "from here" "to here" besides the commands of \bbook. So the "new" \chapter command should have four arguments, if is possible in the order shown below. In this example:
\chapter{genese_heading}{Analysis mathematica}{principia.}{comment}
I would that the "new" command \chapter goes into the headers and the \tableofcontents as the normal chapter command, but only with the second argument of it, in this example: "Analysis mathematica"
\chapter. – egreg Jul 21 '12 at 12:54\bbookgo into the headers and\tableofcontents? – Aurelius Jul 21 '12 at 13:11