番号付けの質問、助けてください!

番号付けの質問、助けてください!

私の説明が正しいかどうか分かりませんが、以下の文書を作成したいと思います

番号付けについてです。自分でもやってみているのですが、難しすぎる気がします。このような文書の作り方を教えていただけますか?

ここに画像の説明を入力してください

ありがとう!

答え1

セクション見出しのインデントが問題にならない限り、次の点が出発点になります。

\documentclass[a4paper]{article}
\usepackage{hyperref}

\setcounter{tocdepth}{5}
\setcounter{secnumdepth}{5}

\renewcommand\thesection{\Roman{section}.}
\renewcommand\thesubsection{\arabic{subsection}.}
\renewcommand\thesubsubsection{(\arabic{subsubsection})}
\renewcommand\theparagraph{\arabic{paragraph})}
\renewcommand\thesubparagraph{\arabic{subparagraph})}

\AtBeginDocument{%
  \csname @ifpackageloaded\endcsname{hyperref}{%
    % \theH... -macros are used ny hyperref's automatic creating of
    % anchor-names/destination-names for hyperlinking. Anchor-names/
    % destination-names must be unique within the document.
    \renewcommand\theHsection{\thesection}%
    \renewcommand\theHsubsection{\theHsection\thesubsection}%
    \renewcommand\theHsubsubsection{\theHsubsection\thesubsubsection}%
    \renewcommand\theHparagraph{\theHsubsubsection\theparagraph}%
    \renewcommand\theHsubparagraph{\theHparagraph\thesubparagraph}%
  }{}%
}%

\begin{document}

\tableofcontents

\section{First Section}
\subsection{First Subsection}
\subsubsection{First Subsubsection}
\paragraph{Paragraph (maybe?)}
\paragraph{Paragraph}
\paragraph{paragraph}
\subsection{Second Subsection}
\section{Second Section}

\end{document}

ここに画像の説明を入力してください

答え2

もちろん、段落作りますサブサブサブセクションコードは次のとおりです。

\usepackage{titlesec}
\setcounter{secnumdepth}{4} % how many sectioning levels to assign numbers to
\setcounter{tocdepth}{4}    % how many sectioning levels to show in ToC
\titleformat{\paragraph}
{\normalfont\normalsize\bfseries}{\theparagraph}{1em}{}
\titlespacing*{\paragraph}
{0pt}{3.25ex plus 1ex minus .2ex}{1.5ex plus .2ex}
\newcommand{\subsubsubsection}{\paragraph}  %define newcommand \subsubsubsection

結果:

ここに画像の説明を入力してください

上記の結果は以下で確認できます:https://github.com/wanzhenchn/プログラミング_Assignments_of_Deep_Learning

関連情報