在页边距左侧悬挂缩进章节编号

在页边距左侧悬挂缩进章节编号

你知道我是怎么得到这个的吗:

在此处输入图片描述

看起来像这样:

在此处输入图片描述

答案1

您可以重新定义\@seccntformat。 中的原始定义latex.ltx如下:

\def\@seccntformat#1{\csname the#1\endcsname\quad}

您可以将其放入里面\llap

\def\@seccntformat#1{\llap{\csname the#1\endcsname\quad}}

在此处输入图片描述

\documentclass{article}
\makeatletter
\def\@seccntformat#1{\llap{\csname the#1\endcsname\quad}}
\makeatother
\begin{document}
\section{Test}
Here some text
\end{document}

答案2

你可以用这个包来做titlesec(见文档了解所用命令的详细信息)。

\documentclass{article}
\usepackage{titlesec}
\titlespacing*{\section}{-6ex}{3.5ex plus 1ex minus .2ex}{2.3ex plus .2ex}
\begin{document}
\section{Test}
Here some text
\end{document}

相关内容