彩色和未编号部分的目录

彩色和未编号部分的目录

我需要制作一个布局,其中部分标题是彩色的并出现在目录中。到目前为止没有问题。下一个要求是跳过编号。我在 luaLaTeX 中的尝试:

\documentclass[a4paper,11pt]{article}
\usepackage{hyperref}
\usepackage{titlesec}
\usepackage{xcolor}
\definecolor{coi_gray}{RGB}{136,155,169}
\titleformat*{\section}{\normalsize\bfseries\color{coi_gray}}
\usepackage{lipsum}  

\setcounter{secnumdepth}{0} % <---- https://tex.stackexchange.com/a/30225/48642
\begin{document}
\tableofcontents % prints Table of Contents
\newpage

\section{Introduction}
\lipsum[2-14]
\section{First long text}
\lipsum[8-20]
\section{Second long text}
\lipsum[8-20]

\end{document}

我尝试遵循解决方案但现在我面临的问题是目录链接不正确——要么链接到第 1 页,要么链接到某个随机页面。其他解决方案也\addcontentsline存在同样的问题,并且\renewcommand{\thesection}{}部分间距很奇怪。

从 2016-03-21 开始使用 titlesec。

相关内容