如何防止 KOMA-script 書籍標題後出現新頁面?

如何防止 KOMA-script 書籍標題後出現新頁面?

如何防止標題後出現新頁面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}

剪貼簿的頁內標題

如 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私人註釋:在我看來,與頁內標題一起使用沒有任何意義。書籍應始終使用扉頁。因此,我甚至對圖書課程提供頁內標題感到驚訝。

相關內容