我对章节编号有点困惑。当我使用时,\section{}
它从 0.1 开始,而不是 1.0。
以下是我的序言:
\documentclass[12pt]{report}
\usepackage{hyperref}
\usepackage[landscape]{geometry}
\usepackage{wallpaper}
\usepackage{fullpage}
有什么想法吗?
答案1
导致此问题的原因是,您使用的文档类包含章节(在本例中为 ,report
但book
该类会产生类似的效果),但您未提供任何\chapter
命令。在大多数提供章节的类中,节号取决于章节号(即,节号为 chapter.section)。由于您没有\chapter
命令,因此章节计数器为 0,因此第一节的前缀也是 0。
为了解决这个问题,要么提供一个\chapter
命令,要么如果您的文档中不需要章节,请使用article
不使用章节的文档类。
以下是显示效果的示例文档:
\documentclass{report} % change this to article to get the correct numbering
\begin{document}
%\chapter{A chapter} % or un-comment this to get the correct numbering with report
\section{A section}
\end{document}
答案2
如果您想要坚持使用报告样式,您可以始终在 \begin{document} 之前先增加章节编号,使用方法如下:
\setcounter{chapter}{1}
这将给出 1.1 等。例如
\documentclass[12pt]{report}
\setcounter{chapter}{1}
\begin{document}
\section{Introduction}
etc
\end{document}
答案3
如果你想要一个看起来像报告的标题页,但带有文章编号,只需使用标题页
\documentclass[titlepage]{article}