您好,请问在pdfLaTeX语境下,怎么样使得{subsubsection}的英文段落可以缩进两个字符

2021-02-07 20:04发布

## 编译环境 操作系统 * [ ] Windows 7/8/10 * [ ] macOS * [ ] Linux `若需勾选,请把[ ]改成[x]` Tex发行版 * [ ] TexLive `年...

## 编译环境 操作系统 * [ ] Windows 7/8/10 * [ ] macOS * [ ] Linux `若需勾选,请把[ ]改成[x]` Tex发行版 * [ ] TexLive `年份` * [ ] MikTeX `版本号` * [ ] CTeX `若需勾选,请把[ ]改成[x]` ## 我的问题 您好,请问在pdfLaTeX语境下,怎么样使得{subsubsection}的英文段落可以缩进两个字符
3条回答
20号楼的房客
2021-02-12 19:40
新年快乐!!一般情况下,段落是首行缩进的(缩进长度由\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} ```

一周热门 更多>