如何使用悬挂缩进来撰写此段落?

如何使用悬挂缩进来撰写此段落?

我想写一个像图片中这样的段落,并缩进除第一行之外的所有行。该怎么做?

例子

答案1

您可以将 TeX 原始寄存器\leftskip和设置\parindent为适当的值。此设置对所有段落或组中的所有段落有效:

\bgroup
\leftskip=2em \parindent=-\leftskip

paragraph...

paragraph...

paragraph...
\par\egroup

答案2

\documentclass{article}
\usepackage{shortvrb}
\MakeShortVerb{\|}
\begin{document}

\hangindent=4pc\hangafter=1
|\frontmatter| should be the very first command after the start of the
document body (|\begin{document}|). It will stretch page numbering to
Roman numerals and sections will be non-enumerated as if you were
using the starred sectioning commands (for example, |\chapter*{Preface}|)
but the sections will still show up in the table of contents.

\end{document}

在此处输入图片描述

如果 的描述只有一个段落\frontmatter,则使用\hangindent\hangafter

如果有两个或两个以上的段落,可以使用list环境或更高级别的开发包enumitem

相关内容