我目前正在尝试创建自己的类,并在其中更改分段命令的颜色,为此,我使用“titlesec”包从更改为\section
重新\subsubsection
定义\part
自己。我遇到的问题是,简单地添加“titlesec”包会弄乱目录。
\documentclass{article}
\usepackage[utf8]{inputenc}
\title{Error with titlesec}
\author{AmadoC}
\date{January 2023}
\begin{document}
\maketitle
this document \textbf{does not} include the \texttt{titlesec} package
\tableofcontents
\newpage
\part{Lorem}
\part{ipsum}
\section{dolor}
\section{sit}
\section{amet}
\subsection{consectetur}
\subsection{adipiscing}
\subsection{elit}
\end{document}
只需将包添加到代码中即可看到差异。
因此,为了纠正该错误并为我的课程创建新的问题列表,我考虑使用“titletoc”包,但我无法重现文章的默认目录。有人知道如何做到这一点或以其他方式解决我的问题吗?