tufte-book 类下的花式章节标题格式

tufte-book 类下的花式章节标题格式

我想为tufte-book文档写章节标题。

以下是我想要使用的:https://tex.stackexchange.com/a/339892/159116

\documentclass[openany,letter]{tufte-book}%
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}


\usepackage{titlesec}
\usepackage{graphicx}

\titleformat{\chapter}[block]
 {\Large\bfseries}
 {\raisebox{-\height}{\sffamily\scriptsize\MakeUppercase{\chaptertitlename}}%
  \space\raisebox{-\height}{\bigchapternumber}\space}
 {0pt}
 {\printtitle}

\newlength\pretitlewidth
\newcommand\bigchapternumber{\resizebox{24pt}{!}{\mdseries\thechapter}}
\newcommand{\printtitle}[1]{%
  \settowidth{\pretitlewidth}{%
    {\sffamily\scriptsize\MakeUppercase{\chaptertitlename}}\space
    {\bigchapternumber}\space
  }%
  \parbox[t]{\dimexpr.8\textwidth-\pretitlewidth}{%
    \linespread{1.5}\selectfont
    \hrule depth 1pt
    \vspace{3ex}
    \raggedright\bfseries #1
  }%
}

\begin{document}

\chapter{Test Chapter Heading}

\end{document}

如何使章节标题全宽?

我想我应该补充一下

{\begin{fullwidth}} 

{\end{fullwidth}}

代码中的某个地方,但无法弄清楚如何。

此外,有没有办法使用类似的包fncychap来制作全宽章节tufte-book

相关内容