\KOMAoptions{open=left} 后的页码从 2 开始

\KOMAoptions{open=left} 后的页码从 2 开始

我正在使用 Latex 和 scrbook 撰写我的学士论文,但遇到了以下问题:在撰写标题页和其他一些内容后,我将 open=left 改为

\KOMAoptions{open=left}
\thispagestyle{empty}
\clearpage
\setcounter{page}{1}
\tableofcontents
\mainmatter
\setcounter{page}{1}

这样,左侧就有了 2 页长的目录的第一页,但页码为 ii。如果我将计数器设置为 {0},则第二页将为 i。\mainmatter 也是如此。这意味着页面从左侧开始,但编号仍然从右侧开始。我该怎么办?

非常感谢,马林

答案1

KOMA-Script 已做好充分准备来制作具有良好排版的书籍。

我到现在还没有使用过 KOMA-Option \KOMAoptions{open=left}

因为您只给了我们一个代码片段而没有 MWE,所以我使用以下 MWE 向您展示如何使用 KOMA-Script 的内置命令来创建一本书。

如果仍然需要使用您的选项,请复制我的 MWE,添加您需要的命令,然后编辑您的问题并添加新的 MWE 来向我们展示您想要的内容。顺便说一句:我选了一个德语 MWE,这就是您会看到一些德语单词的原因,但我想对您来说布局更重要?

梅威瑟:

\documentclass[%
  english
% ngerman
 ,paper=a4 
 ,fontsize=11pt 
]{scrbook}

\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{babel}

\usepackage{scrpage2}       % headers and Footers
\usepackage{lipsum}         % for dummy text
\usepackage{hyperref}


\begin{document}

\frontmatter                  % Vorspann des Dokuments
\title{Titel des Dokuments}
\author{Vorname Nachname}
\subtitle{Untertitel des Dokuments}
\publishers{Herausgeber}

\uppertitleback{Test}
\lowertitleback{Testerle}
\extratitle{Extratitel des Dokuments}

\dedication{Widmung}

\maketitle                    % Erzeugung der Titelseiten

%\KOMAoptions{open=left}      % I guess you want it here ????

\pagestyle{scrheadings}
\tableofcontents              % Inhaltsverzeichnis hier einfügen

\mainmatter                   % Hauptteil des Dokuments
\chapter{Eins, engl. One}
\lipsum

\chapter{Ein Beispiel, engl. An Example}
\lipsum

\backmatter                   % Schlußteil des Buches
\appendix

\chapter{Kapitel im Anhang, engl. Chapter in Appendix}
\lipsum

\end{document}

相关内容