无衬线附录页

无衬线附录页

我正在使用 scrbook 类及其\usepackage[toc,page]{appendix}附录。

插入的附录页面似乎是用 rmfamily 排版的。我该如何将其更改为无衬线字体?

梅威瑟:

\documentclass{scrbook}

\usepackage[toc,page]{appendix}

\begin{document}

\chapter{some chapter}

\begin{appendices}
\chapter{some appendix}
\end{appendices}

\end{document}

答案1

给你,有xpatch

\documentclass{scrbook}

\usepackage[toc,page]{appendix}
\usepackage{xpatch}

\makeatletter
\xpatchcmd{\@chap@pppage}{%
\normalfont}{%
\sffamily}{}{}
\makeatother

\begin{document}

\chapter{some chapter}

\begin{appendices}
  \chapter{some appendix}
\end{appendices}

\end{document} 

在此处输入图片描述

相关内容