语境
对于我的学士论文,我希望我的章节和附录内容在我的 scrbook 文档的左侧打开,我已经通过当前设置实现了这一点。正如您在 MWE 文档中看到的那样,章节在文档的左侧打开,但分别按该部分的第二页编号:第 2 页和 B 页。
要求
如果我在更改页码之前添加一个,\clearpage
页码是正确的,但两面样式会切换,并且从此错误。我希望将它们编号为第一页 1 和 A。我该如何实现?
平均能量损失
https://www.overleaf.com/12454989rnwmtvhnjtpz#/47421405/ 或者
\documentclass[a4paper
, 12pt
, toc=listof
, titlepage
, toc=bibliography
, open=right
, ngerman
]{scrbook}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage[sfdefault,lf]{carlito}
\usepackage[T1]{fontenc}
\renewcommand*\oldstylenums[1]{\carlitoOsF #1}
\usepackage[onehalfspacing]{setspace}
\usepackage[a4paper,
inner=3.5cm,
outer=2.5cm,
includeheadfoot,
top=2cm,
bottom=2cm,
footskip=1cm,
]{geometry}
\selectlanguage{ngerman}
\usepackage[headsepline]{scrlayer-scrpage}
\usepackage{blindtext}
\usepackage{lipsum}
\begin{document}
\pagenumbering{Roman}
\begin{titlepage}
\Huge
Some title page text
\end{titlepage}
\normalsize
\clearpage
\KOMAoptions{open=left}
\singlespacing
\tableofcontents
\onehalfspacing
\cleardoubleoddpage
\pagenumbering{arabic}
\Blinddocument
\cleardoubleoddpage
\pagenumbering{Alph}
\chapter{Some appendix chapter}
\lipsum
\end{document}
答案1
经过更多的研究和实验,我找到了一个至少对我有用的解决方案。它与部分环境一起用作“奇数页起始页”。这让后续章节从偶数页开始,而不会产生奇怪的页码效果。
平均能量损失
\documentclass[10pt]{scrbook}
\usepackage{etoolbox}
\preto\part{\KOMAoptions{open=right}}
\preto\addpart{\KOMAoptions{open=right}}
\renewcommand*\partheademptypage{\KOMAoptions{open=left}}
\usepackage{lipsum}
\usepackage[onehalfspacing]{setspace}
\begin{document}
\frontmatter
\title{test}
\author{test}
\maketitle
\KOMAoptions{open=left}
\singlespacing
\tableofcontents
\onehalfspacing
\KOMAoptions{open=right}
\mainmatter
\part{Part 1 on the right}
\KOMAoptions{open=left}
\addchap{Chapter 1 on the left}
\lipsum[1-4]
\chapter{Chapter 2 on the left}
\lipsum[1-5]
\cleardoubleoddpage
\pagenumbering{Alph}
\backmatter
\part{Appendix on the right}
\chapter{Chapter 3 on the left}
\lipsum[1-5]
\chapter{Chapter 4 on the left}
\lipsum[1-5]
\end{document}