答案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
。