新年快乐!!一般情况下,段落是首行缩进的(缩进长度由\parindent设定)。而article文档类的\subsubsection下的段落不是这样。此时,如果要在某一段首行缩进,可以在该段开始前使用\indent命令;’如果要使所有段落都首行缩进,可以在\begin{document}前加一行\usepackage{indentfirst},设定缩进两个字符就再加一行\setlength\parindent{2em}。
```perl
\documentclass{article}
\usepackage{indentfirst}
\setlength\parindent{2em}
\begin{document}
\subsubsection{Level 3 Title}
This is the first paragraph. \par
This is the second paragraph. \par
This is the third paragraph.
\end{document}
```
一周热门 更多>