¿Cómo evitar que aparezcan nuevas páginas después de los títulos en el libro de guiones KOMA?

¿Cómo evitar que aparezcan nuevas páginas después de los títulos en el libro de guiones KOMA?

¿Cómo evito que aparezca una nueva página después del título en KOMA-script book?
Después del título se crea una nueva página.

¿Puedo prevenirlo?

(Estoy usando LyX)

¡Gracias!

:: Editar ::
Aquí está 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}

Respuesta1

Consulte el manual de KOMA-Script:

captura de pantalla del manual de KOMA-Script

Por lo tanto, solo necesita configurar la opción titlepage=falsepara producir un título en la página con scrbook, por ejemplo:

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

título en la página con scrbook

Como también se explica en el manual de KOMA-Script, puede configurar la opción no solo con \documentclasssino también usando \KOMAoptions:

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

Mismo resultado.

Pero tenga en cuenta: esto no impide, por ejemplo, \chapteriniciar una nueva página, si sigue \maketitle. Y tenga en cuenta, \tableofcontentsetc. también use \chapter(o \chapter*o \addchap).

Nota privada: en mi opinión, no tiene ningún sentido usarlo scrbookcon un título dentro de la página. Los libros siempre deben usar páginas de título. Por eso me sorprende incluso que las clases de libros proporcionen títulos en las páginas.

información relacionada