Опираясь наэтотпример, где Глава добавляется к каждому заголовку главы, как я могу изменить код, чтобы сделать именно этокромедля введения и заключительной/заключительной главы (но при этом сохранить нумерацию для целей оглавления)?
\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}
Редактировать: Меня интересует гибкое решение, которое: - позволит мне сохранить нумерацию введения и заключения такой же, как и у других глав, - позволит мне не нумеровать введение и заключение, но при этом оставить их в оглавлении.
решение1
Пока изменения вносятся внутри группы, они влияют только на нужную вам главу, а другие главы вы можете изменять по своему усмотрению.
\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}