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 스크립트 매뉴얼을 참조하세요:

KOMA-Script 매뉴얼의 스크린샷

titlepage=false따라서 를 사용하여 페이지 내 제목을 생성하는 옵션을 설정하면 됩니다 scrbook. 예:

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

Scrbook이 포함된 페이지 내 제목

KOMA-Script 매뉴얼에도 설명되어 있듯이 다음을 \documentclass사용하여 옵션을 설정할 수 있습니다 \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비공개 메모: 제 생각에는 페이지 내 제목과 함께 사용하는 것은 의미가 없습니다 . 책은 항상 제목 페이지를 사용해야 합니다. 그래서 나는 북 클래스가 페이지 내 제목을 제공한다는 사실에 놀랐습니다.

관련 정보