여기 -KOMA 대본집에서 제목 뒤에 새 페이지가 나오는 것을 방지하는 방법은 무엇입니까?scrbook
- 을 사용하는 대신 새 페이지를 방지하려는 이유가 무엇인지 물었습니다 strartcl
.
따라서 대답 중 하나는 RTL 이점입니다. 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
\part{ABC}
\chapter{cxcx \texthebrew{שלום}}
\chapter{dsds}
\end{document}
RTL은 문제가 발생하는 동안 완벽하게 작동합니다 scrartcl
.
이것은 다음과 같아야 하지만 scrartcl
왼쪽에 있을 것입니다... :( [그리고 scrbook
오른쪽에 있습니다 - 어떻게 되어야 할까요...]
파트와 챕터 다음에 새 페이지가 표시되는 것을 방지하는 방법을 알려주실 수 있나요?
감사합니다!!