Títulos de seção de largura total em tufte-latex

Títulos de seção de largura total em tufte-latex

Estou usando tufte-latex e gostaria que os títulos das minhas seções usassem toda a largura da página, caso eu use um ambiente de largura total para o próximo bloco de texto. No entanto, quando tento compilar este exemplo:

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

 \begin{document}

\begin{fullwidth}
\section{This is the Title of my Section, Which I Will Make Very Long to Demonstrate the Problem I Have Using Fullwidth}
\lipsum
\end{fullwidth}
\end{document}

Estou tendo o erro a seguir:

Erro LaTeX: Algo está errado - talvez um \item faltando

No entanto, se eu executar o código assim, ele funcionará, mas fornecerá um cabeçalho de seção muito estreito.

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

 \begin{document}

\section{This is the Title of my Section, Which I Will Make Very Long to Demonstrate the Problem I Have Using Fullwidth}
\begin{fullwidth}
\lipsum
\end{fullwidth}

\end{document}

cabeçalho da seção muito estreito

Responder1

Acho que é uma má ideia para facilitar a leitura e a consistência, mas se você realmente precisar esticar o título da seção por toda a página, o seguinte deverá funcionar:

\documentclass{tufte-handout}

\titleformat{\section}%
  [display]% shape
  {\relax\ifthenelse{\NOT\boolean{@tufte@symmetric}}{\begin{fullwidth}}{}\normalfont\Large\itshape}% format applied to label+text
  {\thesection}% label
  {1em}% horizontal separation between label and title body
  {}% before the title body
  [\ifthenelse{\NOT\boolean{@tufte@symmetric}}{\end{fullwidth}}{}]% after the title body

\usepackage{lipsum}% provides filler text

\begin{document}

\section{This is a lengthy section heading to demonstrate it sprawls across the entire page width}

\begin{fullwidth}
\lipsum
\end{fullwidth}

\end{document}

Observe também que o fullwidthambiente não foi projetado para funcionar além dos limites da página e pode quebrar em alguns casos. (O bloco de texto será deslocado horizontalmente na página.)

informação relacionada