从目录中删除下划线(titlesec 包)

从目录中删除下划线(titlesec 包)

快速提问。

因此我尝试自定义我的部分格式,并想对部分进行下划线(以及其它一些内容)。

但是!我正在使用该titlesec软件包,并且从我收集的信息来看,目录被视为一个部分...所以问题是:我可以从目录中“删除”下划线,但将其保留在各部分中吗?

非常确定我可以让它工作,sectsty但它与我加载的一些其他包不太兼容......

这是我的 MWE

\documentclass[12pt]{article}
\usepackage[utf8]{inputenc}

\usepackage{titlesec} 
\titleformat{\section}{\Large \bfseries}{\thesection.}{0.5em}{\underline}

\begin{document}

\tableofcontents
\clearpage

\section{Title}
\end{document}

相关内容