章見出しの垂直余白を設定するにはどうすればいいですか?

章見出しの垂直余白を設定するにはどうすればいいですか?

現在、文書の組版が気に入らないのです。両面印刷の文書では、章の見出しの前に縦のスペースを入れないようにしたいのです。

2 ページ目のテキストは 1 行目から、可能であれば 2 行目から始める必要があります。

私の文書の前文:

\documentclass[12pt,parskip=half,a4paper,twoside]{scrreprt}
[..]
\usepackage{fancyhdr}
\usepackage{titlesec}
[..]
\titleformat{\chapter}[hang]{\normalfont\huge\bfseries}{\thechapter}{1em}{\Huge}
\titlespacing*{\chapter}{0pt}{0pt}{1em}

\titleformat{\section}{\normalfont\Large\bfseries}{\thesection}{1em}{}
\titlespacing*{\section}{0em}{1em}{0em}

\titleformat{\subsection}{\normalfont\large\bfseries}{\thesubsection}{1em}{}
\titleformat{\subsubsection}{\normalfont\normalsize\bfseries}{\thesubsubsection}{1em}{}
\titleformat{\paragraph}[runin]{\normalfont\normalsize\bfseries}{\theparagraph}{1em}{}
\titleformat{\subparagraph}[runin]{\normalfont\normalsize\bfseries}{\thesubparagraph}{1em}{}

\begin{document}
[..]
\end{document}

マージン

答え1

試してみて

\renewcommand{\chapterheadstartvskip}{\vspace*{-2\baselineskip}}

文書の序文に記載します。

使用する場合タイトルいつものように、書いてください

\titlespacing*{\chapter}{0pt}{-2\baselineskip}{1em}

関連情報