在页眉中使用 URW Grotesk 作为页码

在页眉中使用 URW Grotesk 作为页码

我想在页眉中使用 URW Grotesk。我想要的格式是:RE 章节名称 LE 页码,LO 部分名称,RO 页码。

我修改了文档中给出的示例,fancyhdr将字体更改为所需的字体。我已设法以所需的字体获取章节名称,但无法更改字体,\thepage并且默认为文档的主字体。如何更改页码字体?

在此处输入图片描述

平均能量损失

\documentclass{book}


\usepackage{fancyhdr}

\renewcommand{\chaptermark}[1]%
{\markboth{{\fontfamily{ugq}\selectfont #1}}{}}
\renewcommand{\sectionmark}[1]%
{\markright{{\fontfamily{ugq}\selectfont #1}}}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
\newcommand{\grotsq}{%
\fontfamily{ugq}\footnotesize\selectfont}
\fancyhf{}
\fancyhead[LE,RO]{\grotsq \thepage} % this seems to have no effect
\fancyhead[LO]{\grotsq \rightmark}
\fancyhead[RE]{\grotsq \leftmark}

\usepackage{lipsum}


\begin{document}

\chapter{The Start}
\section{alpha}
\lipsum
\lipsum
\lipsum
\section{beta}
\lipsum
\lipsum


\end{document}

答案1

您缺少了。如果没有它,您将获得忽略包中定义的\pagestyle{fancy}页面样式。headingsfancyhdr

(您获得章节标题的 URW Grotesk 是因为您将命令添加到了您可能不想执行的命令\fontfamily...\selectfont中)。\markboth

相关内容