如何删除目录中的章节缩进

如何删除目录中的章节缩进

第一次发帖,请温柔一点 :)

我对 Latex 还比较陌生,但已经设法使用软件包手册和 Stack Exchange 摸索了一番。但现在我被一个我不知道如何解决的问题困住了……我添加了一个代码部分,从标题和内容中删除了“章节”,但内容似乎没有这种奇怪的缩进。我该如何摆脱这种缩进?

这是一张图片:

ToC 问题

序言如下:

\documentclass[a4paper, 11pt, oneside]{book}
% Include any additional packages
\usepackage[left=3cm, right=3cm, bottom=3.5cm, top=3.5cm]{geometry}
\usepackage[font=footnotesize, center]{caption}                                             % Changes font size of figure captions to small
\usepackage[
    backend=biber,
    style=authoryear-comp,
    natbib=true,
    maxnames=2,
    sorting=nyt,
    sortcites=false,
    block=space,
    date=long,
    url=false, 
    doi=false,
    eprint=false,
    isbn=false,
    uniquename=false,
    uniquelist=false,
    terseinits=true,
    firstinits=false
    ]{biblatex}
\addbibresource{../../BibTex/library.bib}
%Put initials after names...
\DeclareNameAlias{sortname}{last-first}
\DeclareNameAlias{default}{last-first}    
%Remove "and" before last name. However, this also removes "and" in a textcite...
\renewcommand*{\finalnamedelim}{\addcomma\space}
\usepackage{fancyhdr}  
\usepackage{graphicx}   
\usepackage{wrapfig}
\usepackage{sidecap}                                
\usepackage{subfig} 
\usepackage[big,compact]{titlesec}
\usepackage[hidelinks]{hyperref}
\hypersetup{
    pdftitle=Report,
        pdfauthor=EL,
        pdfkeywords=Thesis
        }
\usepackage[printonlyused]{acronym} % Automates the generation of an acronyms list
\makeindex
\renewcommand{\baselinestretch}{1.5}% Set document line spacing to 1.5
\setlength{\parindent}{0in}
\renewcommand{\chaptername}{}
\renewcommand{\thechapter}{}
\newcommand{\comment}[1]{}

答案1

如果你想要无编号的章节,只需说

\setcounter{secnumdepth}{-1}

而不是清除\chaptername\thechapter


顺便说一句,最好使用和包来设置\baselinestretch和。当然,我的建议是不要使用增加基线跳过或零缩进:两者都会影响可读性。\parindentsetspaceparskip

相关内容