我正在使用 KOMA 脚本类scrbook
进行论文写作,并希望获得双面布局。在每页的页眉中,我希望在左侧和右侧(装订的另一侧)交替包含章节名称。当我设置这样的文档时:
\documentclass[
a5paper,
twoside,
fontsize=11pt,
listof=totoc
]{scrbook}
\usepackage[headsepline]{scrlayer-scrpage}
\usepackage[utf8]{inputenc}
\usepackage{blindtext}
\begin{document}
\KOMAoptions{BCOR=15mm}
\chapter{Chaptername}
\Blindtext
\end{document}
输出如下所示:
此处奇数页缺少章节名称。此外,页眉似乎非常靠近页面顶部。
我该如何解决这两个问题?
答案1
有不同的可能性。一种是改变你的路线
\usepackage[headsepline]{scrlayer-scrpage}
到
\usepackage[%
headsepline,
automark
]{scrlayer-scrpage}
\clearpairofpagestyles % <==============================================
\ohead{\leftmark} % <==================================================
\ihead{\pagemark} % <==================================================
您可以ohead
定义标题外部的内容(章节名称),也ihead
可以定义标题行的内部部分(我在这里使用了页码)。
附完整代码
\documentclass[%
a5paper,
twoside,
fontsize=11pt,
listof=totoc
]{scrbook}
\usepackage[utf8]{inputenc}
\usepackage[%
headsepline,
automark
]{scrlayer-scrpage}
\clearpairofpagestyles % <==============================================
\ohead{\leftmark} % <==================================================
\ihead{\pagemark} % <==================================================
\usepackage{blindtext}
\begin{document}
\KOMAoptions{BCOR=15mm}
\chapter{Chaptername}
\blindtext
\section{Sectionname}
\Blindtext
\end{document}
得到结果:
和
要在评论中反映您的其他问题,您可以使用以下代码。要获取章节第一页的页码等(如果页码在页脚中,则排版效果良好),请使用命令cfoot*
(*
更改第一章页面、目录等的样式plain
)。我还进入了BCOR
类选项。
\documentclass[%
a5paper,
twoside,
fontsize=11pt,
DIV=11, % 11 8 to change the margins and typing area <========
BCOR=15mm, % binding correction
headsepline, % for header, activates headinclude <=================
listof=totoc
]{scrbook}
\usepackage[utf8]{inputenc}
\usepackage{scrlayer-scrpage} % <=======================================
\clearpairofpagestyles % <==============================================
\ohead{\leftmark} % <===================================================
\cfoot*{\pagemark} % <==================================================
\usepackage{blindtext}
\usepackage{showframe}
\begin{document}
\chapter{Chaptername}
\blindtext
\section{Sectionname}
\Blindtext
\end{document}
结果如下: