我创建了我的个人风格.sty
,在其中插入了我的 LaTeX 文档的所有声明。特别是,我重新定义了、、、\chapter
... ,因此它们如下图所示)\section
\subsection
我的问题如下。我想在章节内容内添加左缩进。您可以在图片(文字处理器)中看到,标题的缩进为 0(使用软件包设置的边距geometry
)。我希望在章节内的所有段落、章节标题、小节等都添加缩进,但页脚的边距要保持正确(见下图)。
我已经获得了这些......问题是没有缩进:(
答案1
gemotry
我想用以下方法定义正文边距并将标题行移到边距可能会更容易,就像这样
\documentclass{report}
\usepackage{geometry}
\geometry{
left=5cm,
}
\usepackage{titlesec}
\titleformat{\chapter}{\bfseries\LARGE}{\hspace*{-2cm}\thechapter}{2em}{}
\titlespacing*{\section}{-2cm}{3\baselineskip}{2\baselineskip}
\usepackage{lipsum}% blind text
\begin{document}
\chapter{Chapter title}
\lipsum[2-3]
\section{Section}
\lipsum[1-5]
\end{document}