我想要这样写行:段落的首行没有缩进,但从第二行开始有缩进。例如:
This is what I am saying. This is what I am saying. This is what I am
saying. This is what I am saying. This is what I am say-
ing. This is what I am saying. This is what I am saying.
我在如何使用 Latex 方面遇到了困难。任何建议都将不胜感激。谢谢!
答案1
答案2
\hangindent
并\hangafter
进行救援:
\documentclass{article}
\begin{document}
\hangafter=1
\hangindent=4em
\noindent
This is what I am saying. This is what I am saying.
This is what I am saying. This is what I am saying.
This is what I am saying. This is what I am saying.
This is what I am saying.
\end{document}