我正在写论文,发现目录有问题:所有章节的编号都是零
我怎样才能在不添加零的情况下对部分进行编号?以下是我的代码的最低工作版本
\usepackage{graphicx}
\usepackage[a4paper,top=3cm,left=3cm,right=2cm,bottom=2cm]{geometry}
\usepackage{times}
\usepackage[utf8]{inputenc}
\usepackage[brazilian]{babel}
\usepackage{amsmath}
\DeclareMathOperator\arctanh{arctanh}
\DeclareMathOperator\diag{diag}
\DeclareMathOperator\sign{sign}
\usepackage{hyperref}
\usepackage[rawfloats=true]{floatrow}
\graphicspath{{Figuras/}}
\usepackage[utf8]{inputenc}
\usepackage{mathrsfs}
\usepackage{mathtools}
\usepackage{color}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{mathrsfs}
\usepackage[small,bf]{caption}
\usepackage{setspace}
\usepackage{natbib}
\usepackage{subfig}
\usepackage{MnSymbol}
\usepackage{dsfont}
\usepackage{scalerel,stackengine}
\stackMath
\newcommand\reallywidehat[1]{%
\savestack{\tmpbox}{\stretchto{%
\scaleto{%
\scalerel*[\widthof{\ensuremath{#1}}]{\kern-.6pt\bigwedge\kern-.6pt}%
{\rule[-\textheight/2]{1ex}{\textheight}}%WIDTH-LIMITED BIG WEDGE
}{\textheight}%
}{0.5ex}}%
\stackon[1pt]{#1}{\tmpbox}%
}
\usepackage{multirow}
\usepackage{mathbbol}
\usepackage[toc,page]{appendix}
\usepackage{amsthm}
\newtheorem*{resumindo}{Resumindo}
\newtheorem*{definicao}{Definição}
\newtheorem{propriedade}{Propriedade}
\newtheorem{proposicao}{Proposição}
\newtheorem{provaprop}{Prova da Proposição}
\newtheorem{teorema}{Teorema}
\newtheorem{prova}{Prova}
\title{}
\author{ }
\date{}
\renewcommand{\baselinestretch}{1.4}
\linespread{1.3}
\begin{document}
\pagestyle{empty}
\begin{center}
{\fontsize{16}{16} \selectfont Universidade de S\~ao Paulo \\}
\vspace{0.1cm}
{\fontsize{16}{16} \selectfont Instituto de F\'{i}sica}
\vspace{3.3cm}
{\fontsize{22}{22}\selectfont Titulo\par}
\vspace{2cm}
{\fontsize{18}{18}\selectfont Nome\par}
\vspace{2cm}
\end{center}
\leftskip 6cm
\begin{flushright}
\leftskip 6cm
Orientador(a): Prof. Dr.
\underline{ \hskip 5cm }
\leftskip 6cm
\end{flushright}
\vspace{0.8cm}
\par
\leftskip 6cm
\noindent {Disserta\c{c}\~{a}o de mestrado apresentada ao Instituto de F\'{i}sica da Universidade de S\~{a}o Paulo, como requisito parcial para a obten\c{c}\~{a}o do t\'{i}tulo de Mestre em Ci\^{e}ncias.}
\par
\leftskip 0cm
\vskip 2cm
\noindent Banca Examinadora: \\
Prof(a). Dr(a). Nome do(a) Professor(a) (institui\c{c}\~{a}o de trabalho) \\
Prof(a). Dr(a). Nome do(a) Professor(a) (institui\c{c}\~{a}o de trabalho) \\
\vspace{2.4cm}
\begin{center}
{S\~ao Paulo \\ 2021}
\end{center}
\clearpage
\tableofcontents
\newpage
\section{AAAAA}
aaaa
\section{BBBBB}
aa
\subsection{bbbbb}
aaaa
\subsection{ccccc}
aaaa
\subsubsection{ddddd}
aaaaa
\section{CCCC}
aaaa
\begin{appendices}
\section{AAAAA}
aaaa
\section{BBBBB}
aaaa
\end{appendices}
\end{document}
答案1
在book
(和report
) 类中,章节号位于章节号之前。由于您未\chapter
在 MWE 中使用,因此章节号的当前值为 0。
如果您坚持不使用,\chapter
则可以通过以下方式更改部分编号表示形式:
\renewcommand{\thesection}{\arabic{section}}
另一方面,如果您不使用章节,那么为什么不使用article
类或类似的东西,而您不必更改任何内容。
希望以下 MWE 可以向您展示您可能想要做的事情。
% secnumprob.tex SE 580362
\documentclass{book}
\renewcommand{\thesection}{\arabic{section}} % no chapter number used
\begin{document}
\tableofcontents
\chapter*{A chapter} % unnumbered, just the title in the text
\addcontentsline{toc}{chapter}{A chapter} % add the title to the ToC
\section{First section}
\section{Second}
\subsection{A subsection}
\end{document}