章节编号不起作用

章节编号不起作用

我目前正在写我的硕士论文。为此,我从我的教授那里得到了一份论文模板(顺便说一下,这是我的第一个 latex 项目。:())。我花了几个小时试图纠正一个错误,但一直没能成功。我的问题是,Latex 没有对章节进行编号(如下图所示)。编号应如下所示:

  1. 测试

    1.1 简介

    1.2 背景

等等。

现在的情况

这些是迄今为止的所有包和布局设置:

\documentclass[a4paper,11pt,pdftex]{scrbook}

\begin{document}

\pagenumbering{arabic}

\pagestyle{plain}

\chapter{test}

\section{Introduction}

\section{Background}

\end{document}

\frontmatter

\pagestyle{empty}

\begin{titlepage}


\begin{wrapfigure}{l}{3.25cm}

\includegraphics[width=3cm]{uni-logo-4c}

\end{wrapfigure}

\begin{flushright}

\setlength{\unitlength}{1cm}

{\large \MOrg 

\MInstitution}\\

\textbf{\large \MGroup}

\textbf{\Large M\,A\,S\,T\,E\,R\,\,\,T\,H\,E\,S\,I\,S}

\end{flushright}

\begin{center}

{\LARGE\bf \MTitle}

{\large \textbf{\MAuthor}}

{\large Supervisor: \MSupervisor}

{\large Innsbruck, \MDate} 

\end{center}

\AddToShipoutPicture{

\put(-55,55){

    \parbox[b]{\paperwidth}{

         \hfill \includegraphics[scale=0.35]{UniWatermark}

      }

   }

}

\end{titlepage} 

\ClearShipoutPicture

答案1

\frontmatter文件中使用的 OP titlepage.tex-- 这不是错误,但是没有\mainmatter后续内容,从而导致第一章实际上没有编号并且章节计数器值为0

本文档显示了错误的用法:

\documentclass{scrbook}

\begin{document}
\tableofcontents
\frontmatter

\chapter{My sophisticated content}

\mainmatter

\chapter{Even more sophisticated content}

\end{document}

在此处输入图片描述

\documentclass{scrbook}


\begin{document}
\tableofcontents
\frontmatter

% Some other stuff, i.e. a titlepage
\mainmatter

\chapter{My sophisticated content}


\chapter{Even more sophisticated content}

\end{document}

在此处输入图片描述

相关内容