答案1
您顯示的輸入不會產生您顯示的輸出。對於所有節標題,無論您是否在原始程式碼中的標題後面留下空行,您都會得到相同的輸出。
\documentclass{article}
\begin{document}
\paragraph{title} hi a new text
or
\paragraph{Title}
hi a new text
\end{document}
請注意,儘管它的名稱\paragraph
不適合開始段落,但它是第四級節標題,在 後使用\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 級 subsubsubsections(以 開頭\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}