Sobre la base deesteejemplo donde se agrega Capítulo a cada encabezado de capítulo, ¿cómo puedo modificar el código para hacer precisamente eso?exceptopara la introducción y el capítulo final/conclusivo (pero aún conservar la numeración para fines del TOC)?
\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: Estoy interesado en una solución flexible que me permita mantener la introducción y la conclusión numeradas de la misma manera que los otros capítulos. Me permita tener la introducción y la conclusión no numeradas, pero que aún aparezcan en el TOC.
Respuesta1
Siempre que los cambios se realicen dentro de un grupo, solo afectarán el capítulo que desea y usted es flexible para cambiar los otros capítulos como desee.
\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}