KOMA スクリプト ブックのタイトルの後に新しいページが表示されないようにするにはどうすればよいですか?

KOMA スクリプト ブックのタイトルの後に新しいページが表示されないようにするにはどうすればよいですか?

タイトルの後に新しいページが作成されないようにするにはどうすればよいですかKOMA-script book?
タイトルの後に新しいページが作成されます。

それを防ぐことはできますか?

(私はLyXを使用しています)

ありがとう!

:: 編集 ::
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

\chapter{ABC}

abc
\end{document}

答え1

KOMA-Script マニュアルを参照してください:

KOMA-Script マニュアルのスクリーンショット

titlepage=falseしたがって、ページ内タイトルを生成するにはscrbook、次のようにオプションを設定する必要があります。

\documentclass[titlepage=false]{scrbook}
\begin{document}
\title{Title}
\author{Schweinebacke}
\maketitle
And here comes additional text.
\end{document}

ページ内タイトル(scrbook 付き)

\documentclassKOMA スクリプトのマニュアルでも説明されているように、 だけでなく もオプションを設定できます\KOMAoptions

\documentclass{scrbook}
\KOMAoptions{titlepage=false}
\begin{document}
\title{Title}
\author{Schweinebacke}
\maketitle
And here comes additional text.
\end{document}

同じ結果です。

\chapterただし、注意: これは、 に続く場合、例えば、新しいページを開始することを妨げるものではありません\maketitle。また、\tableofcontentsなどでは、 \chapter(または\chapter*または\addchap) も使用されることに注意してください。

個人的なメモ: 私の意見では、ページ内タイトルで使用するのは意味がありませんscrbook。書籍では常にタイトル ページを使用する必要があります。そのため、書籍クラスがページ内タイトルを提供していることにも驚いています。

関連情報