定制目录事宜

定制目录事宜

我被困在制作目录上。我找到了一些关于在章节旁边添加垂直线的主题。但我找不到如何在行首添加点。请帮帮我,谢谢大家!! 在此处输入图片描述

我正在使用在此论坛的其他帖子上找到的代码。

\documentclass[a4paper,14pt]{report}
\usepackage{tocbasic}
    
\newcommand*{\numberwithbar}[2]{\rule[-\dp\strutbox]{.1pt}{\baselineskip}\hspace{#1}#2}
\DeclareTOCStyleEntry[entrynumberformat=\numberwithbar{.5em}]{tocline}{section}
    \DeclareTOCStyleEntry[indent:=section,numwidth=4em,entrynumberformat=\numberwithbar{1.5em}]{tocline}{subsection}
\begin{document}
    
    \tableofcontents
    \chapter{Project Introduction}
    \section{Section A}
    \section{subsection A}
    
    \chapter{Case Study 2}
    \section{Section A}
    \section{Section B}
    \section{Section C}
    \section{Section D}
    \subsection{subsection A}
    \subsection{subsection A}
    
\end{document}

目前结果:

当前的

相关内容