我目前正在格式化目录。我只会删除目录中的章节编号,如下面的 MWE 所示。
\documentclass[a4paper]{scrbook}
% PACKAGES LOADING
\usepackage[titles]{tocloft} % To customise TOC.
% TOC SETTINGS
\renewcommand\addchaptertocentry[2]{\addtocentrydefault{chapter}{}{#2}}
\renewcommand{\thesection}{\arabic{section}}
\renewcommand\tableofcontents{\listoftoc*{toc}}
%%%%%%%%%%%%%%% DOCUMENT %%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
\tableofcontents
\chapter{Fancy title 1}
\section{Section title 1}
\section{Section title 2}
\end{document}
有人能帮助我实现这个目标吗?
感谢大家的时间!