我想使用两个不同的页脚scrpage2
:第一页上没有\pagemark
(页码);然后\pagemark
所有后续页面都包含。如何在两种页面样式之间切换?下面的内容可以正确呈现第一页的页脚,但其余的页脚都是空白的。我觉得这更像是一个一般的 LaTeX 页眉问题,而不是 KOMA,因为我发现 KOMA 文档对这个问题的解释不清楚。
\documentclass[11pt,letterpaper]{scrartcl}
%%% Load metadata
\usepackage{myinfo} % \myauthor, \mytitle, and others come from here
%%% Select typefaces
\usepackage{fontspec}
\usepackage{xunicode}
\usepackage{xltxtra}
\defaultfontfeatures{Mapping=tex-text}
\setromanfont [Ligatures={Common},Numbers={OldStyle}]{Linux Libertine O}
\setsansfont{Linux Biolinum O}
\setmonofont[Scale=0.8]{Inconsolata}
%%% Define header and footer with scrpage2
\usepackage{scrpage2}
\setkomafont{pagehead}{\footnotesize\scshape}
\clearscrheadfoot
\ofoot[\MakeLowercase{\myauthor · Curriculum Vitae} · \pagemark]{\MakeLowercase{Curriculum Vitae · Last updated \today}}
%%% Define section headings
\setkomafont{section}{\normalfont\Large\sffamily}
\setkomafont{subsection}{\normalfont\normalsize\scshape}
%%% Custom hanging indent for items in C.V.
\newenvironment{cvdatum}
{\noindent\par\leftskip=1em \parindent=-\leftskip}
{\par}
%%% Define PDF metadata
\usepackage[xetex, bookmarks, colorlinks, breaklinks, pdftitle={\myauthor’s \mytitle}, pdfauthor={\myauthor}]{hyperref}
\hypersetup{linkcolor=blue,citecolor=blue,filecolor=black,urlcolor=blue}
\begin{document}
\thispagestyle{scrheadings}
\section*{Education}
\begin{cvdatum}
blah
\end{cvdatum}
\section*{Publications}
\begin{cvdatum}
blah
\end{cvdatum}
\pagestyle{plain}
\section*{Works in progress}
\end{document}
答案1
由 & 的可选参数控制的页面样式\ofoot
称为scrplain
,而不是plain
。\pagestyle{scrheadings}
为整个文档设置(在前言中或紧接在 之后\begin{document}
)并\thispagestyle{scrplain}
在 之后立即设置\begin{document}
。(注意:我在 中切换了参数内容\ofoot
。)
\documentclass{scrartcl}
\usepackage{scrpage2}
\setkomafont{pagehead}{\footnotesize\scshape}
\clearscrheadfoot
\ofoot[\MakeLowercase{Curriculum Vitae · Last updated \today}]
{\MakeLowercase{(Author) · Curriculum Vitae} · \pagemark}
\pagestyle{scrheadings}
\usepackage{lipsum}
\begin{document}
\thispagestyle{scrplain}
\section*{Education}
\lipsum[1-2]
\section*{Publications}
\lipsum[1-2]
\section*{Works in progress}
\lipsum[1-2]
\end{document}