章节坚持从左侧开始

章节坚持从左侧开始

我正在使用 Classic Thesis 软件包和 Scrbook 排版一本书。我在标题页后面添加了通常的版权页,并在题注页后面添加了一个空白页。由于目录页只有一页,我还需要在目录页后面添加一个空白页,这样第 1 章就不会从左侧开始。
问题是:当我尝试在目录后添加一个空白页,以便第 1 章从新页面(右侧)开始时,添加了新页面,因此第 1 章再次从左侧开始。为什么 latex 坚持将章节放在左侧?我怎样才能让它简单地添加 1 个空白页并允许第 1 章从应该的位置开始?我相信每个章节都是这样。

我尝试了几种不同的方法来放置空白页,但结果都一样。这是我的 MWE,其中添加空白页的命令被 % 阻止:

\documentclass[11pt, twoside]{scrbook}
\usepackage{titlesec}
\usepackage{titling}
\usepackage[T1]{fontenc}  % Font encoding
\usepackage[eulerchapternumbers, linedheaders=true]{classicthesis}
\usepackage{moredefs}
\usepackage{lipsum}
\usepackage{geometry}
\geometry{papersize={5in, 8in}, top=0.75in, bottom=0.75in, headsep=0pt, outer=0.6875in, inner=0.815in}
\title{~~~~~\\
{\Huge \textsc{Book Title}\\}}
\author{Author Name\\
\\ {\large ~~~~}}
\date{}
\usepackage{scrlayer-scrpage}
\clearpairofpagestyles
\ohead*{\pagemark}
\chead{\headmark}
\renewcommand\chaptermarkformat{\chaptername\ \thechapter:\enskip}

\begin{document}
\pagenumbering{gobble}
\maketitle
\newpage
\null
\vfill
\begingroup
\parindent 0pt
Copyright \textcopyright{} 2022 \par
All rights reserved. 

\vspace{0.2in}
\hspace*{2cm} ISBN:  \par
\newpage
\begin{center}
    \emph{Dedication.}
\end{center}
\newpage
~
\newpage 
\pagenumbering{arabic}
\setlength{\parindent}{16pt}
    \tableofcontents 
\thispagestyle{empty}
\setcounter{page}{0}

    \pagestyle{scrheadings}
%\newpage
%~
%\newpage 
\chapter{Chapter 1}\thispagestyle{empty}
\lipsum[1-11]
    
\chapter{Chapter 2}
\lipsum[12-15]

\end{document}

答案1

对您的代码进行一些简化。

d

埃

% !TeX TS-program =  lualatex

\documentclass[11pt, twoside]{scrbook}
%\usepackage{titlesec} % to be loaded by classicthesis
\usepackage{titling}
\usepackage[T1]{fontenc}  % Font encoding
\usepackage[eulerchapternumbers, linedheaders=true]{classicthesis}
\usepackage{moredefs}
\usepackage{lipsum}
\usepackage{geometry}
\geometry{papersize={5in, 8in}, top=0.75in, bottom=0.75in, headsep=0pt, outer=0.6875in, inner=0.815in,includefoot}
\title{~~~~~\\
    {\Huge \textsc{Book Title}\\}}
\author{Author Name\\
    \\ {\large ~~~~}}
\date{}
%\usepackage{scrlayer-scrpage}% loaded by classicthesis

\clearpairofpagestyles
\chead{\headmark}
\cfoot*{\pagemark}% changed <<<<<

\begin{document}
    \pagenumbering{gobble}
    \maketitle
    \newpage
    \null\vfill
    \parindent 0pt
    Copyright \textcopyright{} 2022 \par
    All rights reserved.    
    \vspace{0.2in}
    \hspace*{2cm} ISBN:  \par
    \newpage
    \begin{center}
        \emph{Dedication.}
    \end{center}
    
    \tableofcontents \pagenumbering{arabic}     
    
    \pagestyle{scrheadings} 

    \chapter{Chapter 1}
    \lipsum[1-11]
    
    \chapter{Chapter 2}
    \lipsum[12-15]
    
\end{document}

相关内容