라텍스 문서의 섹션 계층 구조에서 서식(스타일)을 변경하는 방법

라텍스 문서의 섹션 계층 구조에서 서식(스타일)을 변경하는 방법

나는 내 강좌의 형식 지정 가이드를 따르려고 노력하고 있습니다. 이에 대한 정보를 찾으려고 노력했지만 해결책이 없습니다. 이에 대한 모든 도움을 주시면 감사하겠습니다.

수업 을 이용하고 있습니다 article.

아래 이미지는 따라야 할 형식을 보여줍니다.

원하는 출력

답변1

이미지에 표시되는 내용이므로 를 제공하는 report(또는 book) 클래스를 사용해 보세요 .\chapter

다음 최소 예는 다음 명령에 필요한 수준을 제공합니다.

  1. \chapter
  2. \section
  3. \subsection
  4. \subsubsection
  5. \paragraph

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

\documentclass{report}

\usepackage{lipsum}

\setcounter{secnumdepth}{3}% Show sectional unit numbering up to level 3 (\subsubsection)

\makeatletter
\renewcommand\paragraph{\@startsection{paragraph}{4}{\z@}%
                                        {3.25ex \@plus1ex \@minus.2ex}%
                                        {-1em}%
                                        {\normalfont\normalsize\bfseries\textbullet\quad}}
\let\old@seccntformat\@seccntformat
\renewcommand{\@seccntformat}[1]{%
  \csname the#1\endcsname
  \ifnum\pdfstrcmp{#1}{subsubsection}=0 .\fi% Add period after \subsubsection number
  \quad
}
\makeatother

\renewcommand{\thesubsubsection}{\alph{subsubsection}}% Update formatting of \subsubsection heading numbering

\begin{document}

\setcounter{chapter}{3}% Just for this example
\chapter{First level}

\lipsum[1][1]

\setcounter{section}{2}% Just for this example
\section{Second level}

\lipsum[1][2]

\setcounter{subsection}{5}% Just for this example
\subsection{Third level}

\lipsum[1][3]

\subsubsection{Fourth level}

\lipsum[1][4]

\paragraph{Fifth level}

\lipsum[1][5]

\end{document}

관련 정보