
我使用的是我們大學提供的模板。我已閱讀並嘗試了多種方法來刪除段落第一行的縮排。
我有以下段落:
\paragraph{1. Number of Sides (n)\\}
For each iteration, every segment of the figure from the previous iteration
will be converted to four segments in the following iteration. Since we begin
with three sides, the formula for the number of sides in the Koch curve is
它列印:
- 邊數 (n)
對於每次迭代,上一次迭代中圖形的每個部分將在下一次迭代中轉換為四個部分。由於我們從三邊開始,科赫曲線的邊數公式為
它在第一行的開頭留下一個空格。
我不想要這個縮進,我嘗試過\noindent
,\setlength\parindent{0pt}
但沒有成功。
我嘗試過\textit
,它沒有縮進第一行,但它縮進了“1.邊數(n)”本身。
我不能使用,\subsubsection
因為它的子\subsubsection
。
如果您有一個可以執行此操作的命令,我將不勝感激。
答案1
您可以嘗試使用
\paragraph{1. Number of Sides (n)\\}
For each iteration, every segment of the figure from the previous iteration
will be converted to four segments in the following iteration. Since we begin
with three sides, the formula for the number of sides in the Koch curve is
\paragraph{1. Number of Sides (n)} \mbox{}\par\nobreak
\noindent For each iteration, every segment of the figure from the previous iteration
will be converted to four segments in the following iteration. Since we begin
with three sides, the formula for the number of sides in the Koch curve is
上面技術上完成了由 開始的段落\paragraph
,插入一個空白框並開始一個新的\par
圖表。\nobreak
確保段落標題和後續段落在分頁符號附近保持在一起,同時\noindent
確保段落沒有縮排。
有更好的方法可以做到這一點,但我不確定您會在多大程度上使用它,以及您在軟體包方面可能有哪些其他限制。此外,手動對章節標題(\paragraph
是章節單元)進行編號很容易出錯。