答案1
答案2
缩进的问题在于章节标题的位置不是固定的,而是取决于章节和章节编号有多少位数字。
另一种方法:将章节编号放在页边距中
\documentclass{scrreprt}
\newcommand*{\numberinmargin}[1]{\makebox[0pt][r]{#1\autodot\hskip\marginparsep}}
\renewcommand*{\chapterformat}{\numberinmargin{\thechapter}}
\renewcommand*{\sectionformat}{\numberinmargin{\thesection}}
\usepackage{lipsum}
\begin{document}
\section{My Section}
\lipsum[1-2]
\end{document}