創建新段落的格式正確是什麼?

創建新段落的格式正確是什麼?

我有兩個例子:

\paragraph{title} hi a new text

或者

\paragraph{Title}

hi a new text

正確的方法是什麼?

空間正確嗎?

在此輸入影像描述

答案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}

相關內容