latex怎么把section之后的内容顶格
时间: 2024-02-18 07:59:40 浏览: 221
latex论文写作教程-内容简介
如果你想要让section之后的内容紧贴着section标题排版,可以使用`\noindent`命令来取消段落开头的缩进。下面是一个例子:
```latex
\documentclass{article}
\begin{document}
\section{Introduction}
This is some text that follows the section heading. It is indented because it is the beginning of a new paragraph.
\noindent This text is not indented because we used the \verb|\noindent| command.
\end{document}
```
在上面的例子中,第一个段落是默认缩进的,第二个段落使用了`\noindent`命令取消了缩进。如果你想要在整个文档中取消段落开头的缩进,可以在导言区使用`\setlength{\parindent}{0pt}`命令。
阅读全文