有什么想法我可以如何在章节标题中添加数字tufte-handouts
?我尝试了这里建议的解决方案,但它们似乎不适用于此模板。
答案1
将计数器设置secnumdepth
为所需的级别即可:
\documentclass{tufte-handout}
% Turn on numbering for section and subsection headings
\setcounter{secnumdepth}{2}
% Provide dummy text
\usepackage{blindtext}
% Temporarily work around Tufte-LaTeX's lack of \subsubsection
\let\subsubsection\subsection
\begin{document}
\Blinddocument
\end{document}