如何缩进乳胶文档的正文文本,而不是部分?

时间:2010-01-09 00:42:15

标签: latex

出于可访问性原因,我想缩进文档的正文,但不是缩进部分。我该怎么做呢?

我希望结果是:

Chapter 1.

Section 1.1

    Some body text here
    Some more body text

Section 1.2

    Some more body text...

1 个答案:

答案 0 :(得分:1)

查看sectstygeometry个软件包。你可以这样做:

\documentclass{report}
\usepackage{sectsty}
\allsectionsfont{\hspace*{-3cm}}
\usepackage[left=5cm,textwidth=400pt]{geometry}
\begin{document}
...
\end{document}

当然,您需要更改上面的长度以满足您的需求。