\setcounter{} 不影响编号

\setcounter{} 不影响编号

我正在尝试使用主席提供的头文件来撰写我的硕士论文。

我正在尝试使用\subsubsection{}不包含任何编号的,快速谷歌搜索显示我需要使用\setcounter{}

格式如下,我有一个主文件输入文件论文标题.tex第二章.tex

论文标题.tex:

\documentclass[11pt,twoside,a4paper]{book}
\usepackage[latin1]{inputenc}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage[normal,small,bf]{caption}
\usepackage{titlesec}

\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}

主要.tex:

\input{thesis_header}
\begin{document}
% added abstract, chapter1 ...
\input{chapters/chapter2}
\end{document}

第2章.tex:

\section{Finite Cell Method}
\label{sec:theory}

\subsection{Discretization}
\label{sec:FCM_Discretization}

\subsection{Integration}
\label{sec:FCM_Integration}

\subsubsection*{Adaptive Space Tree}
\label{sec:FCM_Space_Tree}

\subsubsection*{Moment Fitting Integration}
\label{sec:FCM_Moment_Fitting}

\subsection{Weakly Enforced Dirichlet and Neumann Boundary Conditions}
\label{sec:FCM_WeakBC}

- 输出 -

..

我预期的深度是:

1.3 有限元方法

  • 1.3.1 离散化

  • 1.3.2 集成

  • 1.3.2.1 空间树集成

  • 1.3.2.2 矩拟合积分

  • 1.3.3 弱...

答案1

这与它无关,secnumdepth只是你已经使用了*

 \subsubsection*{Adaptive Space Tree}

这是未编号的标题,应该是

 \subsubsection{Adaptive Space Tree}

相关内容