Scrbook で章やパートが新しいページで始まらないようにするにはどうすればよいですか?

Scrbook で章やパートが新しいページで始まらないようにするにはどうすればよいですか?

ここ -KOMA スクリプト ブックのタイトルの後に新しいページが表示されないようにするにはどうすればよいですか?scrbook- を使用する代わりに、 で新しいページをブロックする理由を尋ねられましたstrartcl

答えの1つはRTLの利点です。これがMWEです。

% Preview source code

%% LyX 2.3.2-2 created this file.  For more info, see http://www.lyx.org/.
%% Do not edit unless you really know what you are doing.
\documentclass[a4paper,oneside,english,hebrew,titlepage=false,numbers=noenddot]{scrbook}
\usepackage{fontspec}
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
\setlength{\parindent}{0bp}

\makeatletter

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% LyX specific LaTeX commands.
\pdfpageheight\paperheight
\pdfpagewidth\paperwidth


\@ifundefined{date}{}{\date{}}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% User specified LaTeX commands.
\newfontfamily\hebrewfont[Script=Hebrew]{David CLM}
\newfontfamily\hebrewfonttt[Script=Hebrew]{Miriam Mono CLM}
\newfontfamily\hebrewfontsf[Script=Hebrew]{Simple CLM}
\AtBeginDocument{
\renewcommand\footnoterule{%
  \kern -3pt
  \hbox to \textwidth{\hfill\vrule height 0.4pt width .4\textwidth}
  \kern 2.6pt
}}
\renewcommand{\labelenumii}{\labelenumi\arabic{enumii}.}
\addtokomafont{disposition}{\rmfamily}
\KOMAoptions{titlepage=false}

\makeatother

\usepackage{polyglossia}
\setdefaultlanguage{hebrew}
\setotherlanguage{english}
\begin{document}
\title{\begin{english}[variant=american]%
ABC
\end{english}}%
\maketitle

\part{ABC}

\chapter{cxcx \texthebrew{שלום}}

\chapter{dsds}
\end{document}

RTL はここでは完璧に動作しますが、scrartcl問題が発生します... ここに画像の説明を入力してください
ここに画像の説明を入力してください

これは本来の見た目ですが、scrartcl左側にあります... :( [そしてscrbook右側にあります - 本来の姿は...]

パートと章の後に新しいページが表示されないようにするにはどうしたらよいか教えてください。

ありがとう!!

関連情報