latex 段落前面加点
时间: 2023-07-27 08:06:10 浏览: 1416
您可以使用LaTeX中的`\indent`命令来在段落前面添加点。具体来说,您可以在每个段落前面添加`\indent\cdot`,其中`\cdot`是表示点的符号。例如:
```latex
\documentclass{article}
\begin{document}
\indent\cdot This is the first paragraph.
\indent\cdot This is the second paragraph.
\end{document}
```
这将在每个段落前面添加一个点,如下所示:
• This is the first paragraph.
• This is the second paragraph.
阅读全文