有许多编号问题被问到,但我还没有找到一个符合这个特定需求的问题:
1. First section
1.1 Second level
A. Third Level (italic)
B. Third Level (italic)
2. Another 1st-level section
2.1 Another 2nd-level section
A. Third level
B. Third Level
简而言之\subsubsection{}
,\subsubsection*{}
以字母形式编号A,乙,C, 标签和标题本身都应该用斜体。
答案1
我不会这样做。由于您的\subsection*
级别是用字母枚举的,因此它们是常规编号部分,因此您应该使用\subsubsection
。(如果您不喜欢输入,\subsubsection
可以将其更改为其他内容(例如\let\lsection\subsubsection
))。然后,您只需使用即可格式化所有内容titlesec
:
\documentclass{article}
\usepackage{titlesec}
\titleformat*{\subsubsection}{\itshape}
\renewcommand{\thesubsubsection}{\Alph{subsubsection}.}
\begin{document}
\section{A section}
\subsection{A subsection}
\subsubsection{A subsubsection}
\subsubsection{A subsubsection}
\end{document}
答案2
更改部分字体:更改章节、小节、小小节、段落和小段落标题的大小
调整计数器表示(有点相关):连续编号,即按章节/节对图表、表格和其他文档元素进行编号
\documentclass{article}
\usepackage{sectsty}
\subsubsectionfont{\normalfont\itshape}
\renewcommand{\thesubsubsection}{\Alph{subsubsection}}
\begin{document}
\section{A section}
\subsection{A subsection}
\subsubsection{A subsubsection}
\subsubsection{A subsubsection}
\section{A section}
\subsection{A subsection}
\subsubsection{A subsubsection}
\subsubsection{A subsubsection}
\end{document}
请注意,使用时可能会遇到问题hyperref
具有非唯一的计数器表示。
为了保持一致性,我保留了章节编号没有结束句号,因为您的\subsection
s 似乎没有句号。如果需要,可以添加句号。无论哪种方式,都可以将其添加到所有句子中,也可以将其从所有句子中删除。