获取目录以识别 titlesec 段落

获取目录以识别 titlesec 段落

我正在使用hyperref制作可点击的目录。

我正在titlesec使用 ,\paragraph{ }就好像它是 一样subsubsubsection。如何让 的这个用途\paragraph显示在我的目录 ( \tableofcontents) 中?目前它没有显示。请注意,我还希望这是一个可点击的目录,我使用它hyperref来做到这一点,如下所示。

\documentclass{article}

\title{FooBar}

\usepackage{hyperref} 
\hypersetup{ 
    colorlinks,
    citecolor=black,
    filecolor=black,
    linkcolor=black,
    urlcolor=black
}

\usepackage{titlesec} %paragraph as subsubsubsection
\setcounter{secnumdepth}{4}
\titleformat{\paragraph}
{\normalfont\normalsize\bfseries}{\theparagraph}{1em}{}
\titlespacing*{\paragraph}
{0pt}{3.25ex plus 1ex minus .2ex}{1.5ex plus .2ex}

\begin{document}
\maketitle
\tableofcontents

\newpage

\section{TestSection}

\subsection{TestSubSection}

\subsubsection{TestSubSubSection}

\paragraph{TestSubSubSubSection}

    \end{document}

答案1

目录中切片的深度由以下因素控制tocdepth

\setcounter{tocdepth}{5}

将发送\paragraph\subparagraph至目录。

相关内容