如何控制未编号的章节标题

如何控制未编号的章节标题

一般来说,可以使用标签内的标签为编号部分编写一些条件语句\ifnum #2 =(例如,1用于命令) ,是否也可以为未编号部分编写相同类型的条件?\section\def\@sect#1#2#3#4#5#6[#7]#8{

MWE 为:

\documentclass{book}
\begin{document}

\chapter{Chapter Number and Title\protect\marginpar{CN\&CT}}

This is for test. 

\section{H1 head\protect\marginpar{H1}}

This is for test. 

\subsection{H2 head\protect\marginpar{H2}}

This is for test. 

\section*{H1 head}\protect\marginpar{H1}

This is for test. 

\subsection*{H2 head}\protect\marginpar{H2}

\end{document}

输出为:

在此处输入图片描述

我正在尝试自动创建边际标签,无论这些标题出现在文档中的什么位置。

相关内容