答案1
三个步骤:
\thesubsection
重新定义打印方式:\renewcommand{\thesubsection}{\thesection.\Alph{subsection}}
这将确保使用 A、B、C、... 来枚举子部分。
使用以下方法跳过第 4.4 节的第一个子节编号
\stepcounter{subsection}
恢复原始
\thesubsection
格式:\renewcommand{\thesubsection}{\thesection.\arabic{subsection}}
这是一个简单的例子:
\documentclass[bibliography=totoc,listof=totoc]{scrbook}
\begin{document}
\tableofcontents
\setcounter{chapter}{3}% Just for this example
\chapter{Experiments and Results}
\section{Datasets}
\section{Optimization}
\section{High-level model}
% Change formatting of subsection counter representation
\renewcommand{\thesubsection}{\thesection.\Alph{subsection}}
\subsection{A: Deep Gaze II}
\section{Lower-level models}
% Skip typical first subsection numbering
\stepcounter{subsection}
\subsection{B: ICF}
\subsection{C: Parameterized Gabor}
\subsection{D: ICF + Parameterized Gabor}
\subsection{E: Itti \& Koch}
\subsection{F: I\& K + ICF}
% Restore typical subsection numbering/representation (if needed)
\renewcommand{\thesubsection}{\thesection.\arabic{subsection}}
\section{Summary}
\end{document}