简而言之,我希望有一个“未编号部分”,具有其默认的文章样式,但只出现在目录中,而不是实际文档中。基本上与 ToC 相同,\renewcommand{\thepart}{}
但只适用于 ToC(并且它应该适当向左移动以填充缺失的数字空间)。
目前如果
\part{This is the part name}
\section{Section}
\subsection{subsection}
% etc.
我的目录中有以下内容:
我想要的是这个:
虽然我的文档主体保持不变(我在项目中将“Part”更改为“Section”,如下面的代码所示,抱歉造成混淆):
\documentclass[12pt]{article}
\usepackage[hidelinks]{hyperref}
\hypersetup{linktoc=all}
\usepackage{tocloft}
% I just redefined it a bit idk if it's relevant
\makeatletter
\@addtoreset{section}{part}
\makeatother
\renewcommand{\thepart}{\arabic{part}}
\renewcommand{\partname}{Section}
\cftpagenumbersoff{part}