سلام
اول برای آشنایی بیشتر با بخشها، قسمت توضیحات بیشترِ این لینک رو بخونین.
شما با تنظیم شمارهٔ عمقها، از دستوراتی مثل \paragraph{}
و \subparagraph{}
که فرمت خاص خودشونو دارن، میتونین استفاده کنین.
در عین حال، میتونین فرمت \paragraph{}
و \subparagraph{}
رو تغییر بدین یا حتی خودتون زیربخش جدید تعریف کنین.
نحوهٔ تغییر فرمت:
\documentclass[12pt]{report}
\setcounter{secnumdepth}{5}% section numbering depth
\setcounter{tocdepth}{5}% table of contents depth
\makeatletter
% change paragraph
\renewcommand{\paragraph}{\@startsection
{paragraph}% name
{4}% level
{0em}% indent
{\baselineskip}% beforeskip
{0.5\baselineskip}% afterskip
{\normalfont\normalsize\bfseries}% style
}
% change subparagraph
\renewcommand{\subparagraph}{\@startsection
{subparagraph}% name
{5}% level
{0em}% indent
{\baselineskip}% beforeskip
{0.5\baselineskip}% afterskip
{\normalfont\normalsize\bfseries}% style
}
\makeatother
\begin{document}
\tableofcontents
\chapter{Fasl}
Chapter Text.
\section{Bakhsh}
Section Text.
\subsection{ZirBakhsh}
Subsection Text.
\subsubsection{ZirZirBakhsh}
Subsubsection Text.
\paragraph{Band}
Paragraph Text.
\subparagraph{ZirBand}
Subparagraph Text.
\end{document}
خروجی: