使用“titletoc”包重现文章的默认目录

使用“titletoc”包重现文章的默认目录

我目前正在尝试创建自己的类,并在其中更改分段命令的颜色,为此,我使用“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”包,但我无法重现文章的默认目录。有人知道如何做到这一点或以其他方式解决我的问题吗?

相关内容