LoF、LoT、摘要、首字母缩略词在 ToC 中未编号 - 为什么?

LoF、LoT、摘要、首字母缩略词在 ToC 中未编号 - 为什么?

解决方案目录中的 LOF+LOT+BIB,带编号章节对我来说不起作用。

诚然,我使用了其他人的模板 - 当我用他的代码生成 PDF 时,上述所有部分都已编号。但是,当我生成我的代码的 PDF 时,这些部分仍然没有编号 - 这是不受欢迎的。有人能帮我吗?我怀疑依赖于一些适得其反的使用包

以下是代码:

\documentclass[10pt,a4paper,bibliography=totocnumbered,listof=totocnumbered]{scrartcl}
\usepackage[tocbibind]
\usepackage[utf8]{inputenc}
\usepackage{fancyhdr}
\usepackage{titlesec}
\usepackage[subfigure,titles]{tocloft}
\usepackage{caption}

\setcounter{tocdepth}{2}
\renewcommand\cftchapafterpnum{\vskip8pt}
\renewcommand\cftsecafterpnum{\vskip10pt}

\usepackage{listings}
\lstset{basicstyle=\footnotesize, captionpos=b, breaklines=true, showstringspaces=false, tabsize=2, frame=lines, numbers=left, numberstyle=\tiny, xleftmargin=3em, framexleftmargin=3.0em}
\makeatletter
\def\l@lstlisting#1#2{\@dottedtocline{1}{0em}{1em}{\hspace{2,0em} Lst. #1}{#2}}
\makeatother

\geometry{a4paper, top=28mm, left=31mm, right=28mm, bottom=26mm, headsep=4mm, footskip=4mm}

\begin{document}

\titlespacing{\section}{0pt}{12pt plus 4pt minus 2pt}{2pt plus 2pt minus 2pt}
\renewcommand{\contentsname}{II Contents}
\phantomsection

\addtocounter{section}{1}
\tableofcontents
\pagebreak
\listoffigures
\pagebreak
\listoftables
\pagebreak


\noindent\section{List of Acronyms}
\begin{acronym} 
\setlength{\itemsep}{-\parsep} 
\acro{CEO}{Chief Executive Officer}     
\end{acronym}
\newpage


\setcounter{section}{0}
\renewcommand\refname{0. Introduction}
\section{{\Large Introduction}}
\markright{Introduction}
\phantomsection
\addcontentsline{toc}{section}{0. Introduction}
\addtocontents{toc}{\vspace{-0.5em}}

Lorem ipsum...

\newpage
\setcounter{section}{1}
\renewcommand\refname{Chapter 1}
\section*{{\Large Chapter 1}}
\markright{Chapter 1}
\phantomsection
\addcontentsline{toc}{section}{Chapter 1}
\addtocontents{toc}{\vspace{-0.5em}}

Lorem Ipsum again

\end{document}

答案1

不建议将tocbibindtocloft和软件包与 KOMA 类一起使用。它们提供标准类所没有的功能。KOMA-script 提供了这些功能,但它们被上述软件包所淹没。不使用它们是解决方案。titlesecfancyhdr


据说,上述代码是在模板中找到的。该代码做了很多奇怪的事情,我不建议任何人使用它。
要小心,很多模板都是不好的。

相关内容