本地目录中无缩进

本地目录中无缩进

我不想在本地目录中缩进。我正在使用包titletoc,我也使用titlesectitleref包。

\documentclass[twocolumn]{book}

\usepackage[english]{babel}
\usepackage{titleref}
\usepackage[explicit]{titlesec}
\usepackage{titletoc}

\newcommand{\localToC}{
\startcontents[chapters]
\printcontents[chapters]{}{1}{\noindent\rule{0.5\textwidth}{1.5pt}\vspace{3mm}}{\vspace{3mm}\noindent\rule{0.5\textwidth}{1.5pt}\vspace{10mm}}
}

\begin{document}
\tableofcontents
\let\oldchapter\chapter
\renewcommand{\chapter}[1]{\oldchapter{#1}\localToC}

    \chapter{Chapter 1}
        \section{Section 1}
        \section{Section 2}

\end{document}

在此处输入图片描述

相关内容