I’m trying to add a larger indent to accomodate for the increased line width when using fullwidth in tufte-latex.
It’s not working, the same new indent is applied to all paragraphs.
Result with current code:
Desired result:
My mwe (not proficient in LaTeX — just an avid beginner):
tufte-wideindent.sty:
% Alternative indent for fullwidth
\def\@tufte@reset@par{%
\ifthenelse{\boolean{@tufte@fullwidth}}{%
\setlength{\RaggedRightParindent}{6.0pc}%
\setlength{\JustifyingParindent}{6.0pc}%
\setlength{\parindent}{6pc}%
\setlength{\parskip}{0pt}%
}{}
}
\@tufte@reset@par
main.tex:
\documentclass{tufte-book}
% Just some sample text
\usepackage{lipsum}
% Custom indent for fullwidth
\usepackage{tufte-wideindent}
\begin{document}
\begin{fullwidth}
\lipsum[1-2]
\end{fullwidth}
\lipsum[3-4]
\end{document}
Based on this answer.
I’ve also uploaded a mwe on overleaf.

