LaTeX:如何更改报告文档类中章节和节的缩进?

LaTeX:如何更改报告文档类中章节和节的缩进?

chapter相对于段落文本,和标题似乎section具有默认缩进,我想手动设置。有没有办法使用

\setlength{\...}{}

? 我宁愿不弄乱,\titlesec因为我有多个文件并且使用titlesec以前弄乱的格式。

答案1

标准类中没有预定义的长度,但可以很容易地复制定义report.cls并添加一些 leftskip:

在此处输入图片描述

\documentclass{report}

\begin{document}

\section{aaaaa}

aaaa

\makeatletter


\renewcommand\section{\@startsection {section}{1}{\z@}%
                                   {-3.5ex \@plus -1ex \@minus -.2ex}%
                                   {2.3ex \@plus.2ex}%
                                   {\leftskip1in \normalfont\Large\bfseries}}

\makeatother

\section{aaaaa}

aaaa

\end{document}

请注意,如第 0.1 节示例所示,默认缩进为零。

相关内容