Como evitar novas páginas após os títulos do livro de script KOMA?

Como evitar novas páginas após os títulos do livro de script KOMA?

Como evito a criação de uma nova página após o título em KOMA-script book?
Após o título é feita uma nova página.

Posso evitar isso?

(Estou usando LyX)

Obrigado!

:: Editar ::
Aqui está o 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}

Responder1

Consulte o manual KOMA-Script:

captura de tela do manual KOMA-Script

Então você só precisa definir a opção titlepage=falsepara produzir um título na página com scrbook, por exemplo:

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

título na página com scrbook

Conforme também explicado no manual KOMA-Script, você pode definir a opção não apenas com, \documentclassmas também usando \KOMAoptions:

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

Mesmo resultado.

Mas atenção: isso não impede, por exemplo, \chapterde iniciar uma nova página, caso ela siga \maketitle. E observe, \tableofcontentsetc. também use \chapter(ou \chapter*ou \addchap).

Nota privada: Na minha opinião não faz sentido usar scrbookum título in-page. Os livros devem sempre usar páginas de título. Por isso, fico até surpreso que as aulas de livros forneçam títulos nas páginas.

informação relacionada