KOMA-Script;隐藏章节标题的数量,但将其保留在目录和章节中

KOMA-Script;隐藏章节标题的数量,但将其保留在目录和章节中

我正在使用 KOMA-Script 编写报告。我希望章节标题在文本中不编号,但在目录中编号。我还希望本章中的各节按章节正常编号的方式进行编号。我尝试使用\addchap{Introduction},但它没有按我想要的方式工作。它从章节标题中删除了编号,但也导致各节的编号为 0.1/0.2/等。它还删除了目录中的编号。

\documentclass[twoside,open=right,12pt,a4paper,abstracton,BCOR=15mm,bibliography=totoc,toc=indentunnumbered]{scrreprt}

\usepackage{lettrine}
\usepackage[normalem]{ulem}
\usepackage{lmodern}
\usepackage{tocloft}

\renewcommand*{\abstractname}{\Large Abstract}
\renewcommand{\contentsname}{\centering Contents}
\renewcommand{\cftpartleader}{\cftdotfill{\cftdotsep}}

\pagenumbering{gobble}

\title{title}
\author{author}

\begin{document}

\maketitle

\begin{abstract}
\noindent
\end{abstract}

\clearpage
\tableofcontents

\addchap{Introduction}  
\pagenumbering{arabic}

\section{Motivation}

\section{Formalism}

\end{document}

这会产生没有编号的标题和错误编号的章节,目录中也没有编号。我希望目录中的章节编号为 1.1/1.2/etc 和“1. 简介”,但文本中的章节标题“简介”前面没有编号。

答案1

您可以重新定义\chapterformat

\documentclass{scrreprt}

\renewcommand*\chapterformat{}

\usepackage{blindtext}% dummy text
\begin{document}
\tableofcontents
\chapter{Introduction}
\blindtext
\section{Motivation}
\Blindtext
\section{Formalism}
\Blindtext
\end{document}

在此处输入图片描述

相关内容