我只想问一下关于文档页脚和页眉的问题。我真的不知道如何调整它们,以便页眉和文本之间有足够的空间。下面的代码中有一个示例。这样对吗,还是我应该增加空间。什么是正常的?由于某种原因,页脚很低(我想这是因为我做了脚注设置。如果你省略,它看起来很正常。我怎样才能让它看起来正常?)我希望有人能帮助我。谢谢你的帮助!!
\documentclass[a4paper, fontsize=11pt]{scrbook}
\usepackage{geometry} \geometry{a4paper, top=25mm, left=25mm, right=25mm, bottom=25mm}
\usepackage[onehalfspacing]{setspace} %Spacing
%Footnote
\usepackage[hang,splitrule]{footmisc}
\addtolength{\footskip}{0.5cm}
\setlength{\footnotemargin}{0.3cm}
\setlength{\footnotesep}{0.4cm}
\usepackage{fancyhdr}
\pagestyle{fancy}
\renewcommand{\chaptermark}[1]{\markboth{#1}{}}
\fancyhf{} % clear the headers
\fancyhead[R]{%
% We want italics
\itshape
% The chapter number only if it's greater than 0
\ifnum\value{chapter}>0 \chaptername\ \thechapter. \fi
% The chapter title
\leftmark}
\fancyfoot[C]{\thepage}
\fancypagestyle{plain}{
\renewcommand{\headrulewidth}{0pt}
\fancyhf{}
\fancyfoot[C]{\thepage}
}
\setlength{\headheight}{14.5pt}
\usepackage{kantlipsum} % for the mock text
\begin{document}
\frontmatter
\chapter{Introduction}
\kant
\mainmatter
\chapter*{Another introduction}
\chaptermark{Another introduction}
\kant
\chapter{Title}
\kant
\end{document}
答案1
您可以阅读KOMA-Script 文档。
以下是使用 KOMA 功能制作双面文档的建议。请注意,\addchap
如果您想要一个带有目录和标题条目的未编号章节,则可以使用此功能。
\documentclass[a4paper, fontsize=11pt,
headheight=16.5pt,
DIV=12,
headinclude,
numbers=enddot
]{scrbook}
\usepackage[onehalfspacing]{setspace} %Spacing
%Footnote
\usepackage[hang,splitrule]{footmisc}
\setlength{\footnotemargin}{0.3cm}
\setlength{\footnotesep}{0.4cm}
\usepackage[headsepline]{scrlayer-scrpage}
\automark[chapter]{chapter}
\automark*[section]{}
\clearpairofpagestyles
\ohead{\headmark}
\ofoot*{\pagemark}
\renewcommand\chaptermarkformat{\chapapp\ \thechapter\autodot\enskip}
\usepackage{blindtext} % dummy text
\begin{document}
\frontmatter
\tableofcontents
\chapter{Introduction}
\Blindtext
\mainmatter
\addchap{Another introduction}
\Blindtext[20]
\blinddocument
\end{document}