번호 매기기 질문 도와주세요!

번호 매기기 질문 도와주세요!

제 설명이 맞는지는 모르겠지만, 아래와 같은 문서를 만들고 싶습니다.

번호 매기기에 관한 것입니다. 저도 직접 해보고 있는데... 저한테는 너무 어려운 것 같아요. 이런 문서를 만드는 방법을 알려주실 수 있나요?

여기에 이미지 설명을 입력하세요

감사합니다!

답변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/Programming_Assignments_of_Deep_Learning

관련 정보