답변1
귀하가 표시하는 입력은 귀하가 표시하는 출력을 생성하지 않습니다. 모든 섹션 제목의 경우 소스에서 제목 뒤에 빈 줄을 남겨두는지 여부에 관계없이 동일한 출력을 얻습니다.
\documentclass{article}
\begin{document}
\paragraph{title} hi a new text
or
\paragraph{Title}
hi a new text
\end{document}
불행하게도 이름은 \paragraph
단락을 시작하는 데 사용되는 것이 아니라 4번째 수준 섹션 제목이며 뒤에 사용됩니다 \subsubsection
. LaTeX에 더 깊은 숫자를 추가하도록 지시하면 이것을 보는 것이 가장 쉽습니다.
\setcounter{secnumdepth}{4}
위와 같이 출력은 다음과 같습니다.
예제에 0.0.0이 누락되어 발생 하고 \section
.\subsection
\subsubsection
섹션 제목 스타일, 실행 또는 표시(이미지에 표시된 두 가지 스타일)는 단락뿐만 아니라 모든 섹션에 적용할 수 있는 문서 수준 설정입니다. 기본적으로 표준 클래스는 표시된 대로 레벨 4 제목을 설정하지만 표시로 설정되도록 쉽게 지정할 수 있습니다. 같은 패키지를 사용하거나 secsty
단순히 정의를 복사 article
하고 하나의 인수를 변경합니다.
에 의해 생산됩니다
\documentclass{article}
\makeatletter
\renewcommand\paragraph{\@startsection{paragraph}{4}{\z@}%
{3.25ex \@plus1ex \@minus.2ex}%
{5pt}% was {-1em} negative implies run-in, positive implies display
{\normalfont\normalsize\bfseries}}
\makeatother
\begin{document}
\paragraph{title} hi a new text
or
\paragraph{Title}
hi a new text
\end{document}
위의 모든 내용은 4번째 수준 하위 하위 섹션( 로 시작)에 관한 것입니다. 텍스트 단락에는 빈 줄( ) \paragraph
을 제외하고 마크업이 전혀 필요하지 않습니다 .\par
\documentclass{article}
\begin{document}
A paragraph of text doesn't use a \verb|\paragraph| command.
Very few documents have a 4 levels of sectioning and need \verb|\paragraph|.
This is a new paragraph just following the blank line
that ended the previous one.
\end{document}