Adicionando ``Capítulo N'' a todos os capítulos, exceto o primeiro

Adicionando ``Capítulo N'' a todos os capítulos, exceto o primeiro

Construindo emesseexemplo onde o capítulo é adicionado a cada título de capítulo, como posso modificar o código para fazer exatamente issoexcetopara a introdução e o capítulo final/conclusivo (mas ainda mantém a numeração para fins de sumário)?

\documentclass{tufte-book}
\usepackage{lipsum}

\makeatletter
\titleformat{\chapter}%
  [display]% shape
  {\relax\ifthenelse{\NOT\boolean{@tufte@symmetric}}{\begin{fullwidth}}{}}% format applied to label+text
  {\itshape\huge\chaptertitlename~\thechapter}% label
  {0pt}% horizontal separation between label and title body
  {\huge\rmfamily\itshape}% before the title body
  [\ifthenelse{\NOT\boolean{@tufte@symmetric}}{\end{fullwidth}}{}]% after the title body
\makeatother
\setcounter{secnumdepth}{1}

\begin{document}

\chapter{Introduction}
\lipsum[1]
\chapter{A substantive chapter}
\lipsum[2]
\end{document}

Editar: estou interessado em uma solução flexível que - me permita manter a introdução e a conclusão numeradas da mesma forma que os outros capítulos - me permita ter a introdução e a conclusão não numeradas, mas ainda assim aparecendo no sumário.

Responder1

Desde que as alterações sejam feitas dentro de um grupo, elas afetarão apenas o capítulo que você deseja e você terá flexibilidade para alterar os outros capítulos como desejar.

\documentclass{tufte-book}
\usepackage{lipsum}

\makeatletter
\newcommand{\mychap}{%
\titleformat{\chapter}%
  [display]% shape
  {\relax\ifthenelse{\NOT\boolean{@tufte@symmetric}}{\begin{fullwidth}}{}}% format applied to label+text
  {\itshape\huge\chaptertitlename~\thechapter}% label
  {0pt}% horizontal separation between label and title body
  {\huge\rmfamily\itshape}% before the title body
  [\ifthenelse{\NOT\boolean{@tufte@symmetric}}{\end{fullwidth}}{}]% after the title body
}
\makeatother
\setcounter{secnumdepth}{1}

\begin{document}

\chapter{Introduction}
\lipsum[1]

\begingroup
\mychap%
\chapter{A substantive chapter}
\lipsum[2]
\chapter{Another chapter}
\lipsum[1]
\endgroup

\chapter{Conclusions}
\lipsum[1]

\end{document}

informação relacionada