我正在尝试制作一个章节样式,我使用亲密章节名称的字体,但我无法让它工作。我仅有的想要更改这一点,而不是文档其余部分的字体。有什么想法吗?
这是我想要的:
梅威瑟:
\documentclass{memoir}
\makechapterstyle{section}{%
\renewcommand{\printchaptername}{}
\renewcommand{\chapternamenum}{}
\renewcommand{\chapnumfont}{\normalfont\Huge\bfseries}
\renewcommand{\printchapternum}{\chapnumfont \thechapter\space}
\renewcommand{\afterchapternum}{}
}
\begin{document}
\chapter{Foo}
Bar
\end{document}
答案1
我没有安装精确的字体,但基本思路如下:
\documentclass{memoir}
\usepackage{sqrcaps}
\usepackage[T1]{fontenc}
\makechapterstyle{section}{%
\renewcommand{\printchaptername}{}
\renewcommand{\chapternamenum}{}
\renewcommand{\chapnumfont}{\normalfont\Huge\sqrcfamily}
\renewcommand{\chaptitlefont}{\normalfont\Huge\sqrcfamily}
\renewcommand{\printchapternum}{\chapnumfont \thechapter\space}
\renewcommand{\afterchapternum}{}
}
\chapterstyle{section}
\begin{document}
\chapter{Semper latinitas}
Bar \texttt{foo} \textbf{bar} \textsf{baz}
\ldots {\sqrcfamily nunc est bibendum!}
\end{document}