提问于:
浏览数:
2743
## 编译环境
操作系统
* [ ] Windows 7/8/10
* [ ] macOS
* [ ] Linux
`若需勾选,请把[ ]改成[x]`
Tex发行版
* [ ] TexLive `年份`
* [ ] MikTeX `版本号`
* [ ] CTeX
`若需勾选,请把[ ]改成[x]`
## 我的问题
您好,请问在pdfLaTeX语境下,怎么样使得{subsubsection}的英文段落可以缩进两个字符
3 回答
1
`texdoc titlesec`
1
新年快乐!!一般情况下,段落是首行缩进的(缩进长度由\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}
```
0
「两个字符」可以是两个「i」也可以是两个「m」,但是宽度差异很大。西文除了等宽字体一般用具体的长度。直接修改 `\parindent` 即可,比如 `\setlength\parindent{1em}`。
你的回答
请登录后回答
你的回答将会帮助更多人,请务必认真回答问题。