不显示子节的编号

不显示子节的编号

我对 Latex 还很陌生,但我要在大学里提交一份项目报告。大学为我们提供了一个模板,我们必须使用它来生成报告。它包含太多我不熟悉的软件包和其他东西。由于时间非常紧迫,我需要一些帮助来解决子节编号问题。

包含的软件包包括:

\documentclass[oneside,a4paper,12pt]{book}
%\usepackage{showframe}
%\hoffset = 8.9436619718309859154929577464789pt
%\voffset = 13.028169014084507042253521126761pt
\usepackage{fancyhdr}

\fancypagestyle{plain}{%
  \fancyhf{}
  \fancyfoot[CE]{Pune Institute of Computer Technology, Department of Computer Engineering 2016-17}
  \fancyfoot[RE]{\thepage}
}
\pagestyle{fancy}
\fancyhead{}
\renewcommand{\headrulewidth}{0pt}
\footskip = 0.625in
\cfoot{}
\rfoot{}

\usepackage[]{hyperref}
\usepackage{tikz}
\usetikzlibrary{arrows,shapes,snakes,automata,backgrounds,petri}
\usepackage{titlesec}
\usepackage{tabularx}

\usepackage[nottoc,notlot,notlof,numbib]{tocbibind}
\usepackage[titletoc]{appendix}
\usepackage{titletoc}
\renewcommand{\appendixname}{Annexure}
\renewcommand{\bibname}{References}

\setcounter{secnumdepth}{5}

\usepackage{float}
\usepackage{subcaption}
\usepackage{multirow}

\usepackage[ruled,vlined]{algorithm2e}

\begin{document}
....

在几页致谢和摘要之后,出现了

\tableofcontents
\listoffigures 
\listoftables

\mainmatter

\titleformat{\chapter}[display]
{\fontsize{16}{15}\filcenter}
{\vspace*{\fill}
 \bfseries\LARGE\MakeUppercase{\chaptertitlename}~\thechapter}
{1pc}
{\bfseries\LARGE\MakeUppercase}
[\thispagestyle{empty}\vspace*{\fill}\newpage]

....

接下来是第一章

\setlength{\parindent}{11mm}
\chapter{Synopsis}
\section{Project Title}
 blah blah blah...
\section{ Project Option }
blah blah blah...

我看到的 PDF 输出是(我在 ubuntu 16.04 中使用 TexStudio) 不显示子节编号

目录中的编号显示正确,但章节中没有显示。我已上传了我认为理解问题所需的所有信息。如果您需要更多信息,请随时询问。谢谢。

答案1

正如问题评论部分中的“esdd”所指出的那样,问题出在titlesec软件包版本上。虽然我没有注意到之前的版本号,但我已经将其更新到最新版本。因为我使用的是 Ubuntu,所以我

sudo wget http://mirrors.ctan.org/macros/latex/contrib/titlesec/titlesec.sty -O /usr/share/texlive/texmf-dist/tex/latex/titlesec/titlesec.sty

相关内容