如何缩放回忆录中的章节标题?

如何缩放回忆录中的章节标题?

我正在(或者说想要)使用哥特联盟,捏在一起一点。

以下是我得到的结果:

\documentclass{memoir}

\usepackage{fontspec}
\newfontfamily{\title}{League Gothic}
\newcommand{\titlefont}[1]{{\scalebox{2.0}[0.8]{\title{\MakeUppercase{#1}}}}}

\chapterstyle{section}
\renewcommand*{\chaptitlefont}{\titlefont}

\begin{document}

\chapter{foo}

\end{document}

我知道我不能把这\newfontfamily\newcommand那样混为一谈,但正确的方法是什么?

答案1

这似乎至少起到了一定作用

\documentclass{memoir}
\usepackage{fontspec}
\usepackage{graphicx}

\newfontfamily{\titlefont}[Path = ./,]{LeagueGothic-Regular}
\chapterstyle{section}
\renewcommand{\printchaptertitle}[1]{{\scalebox{8.0}[0.8]{\normalfont\titlefont\MakeUppercase{#1}}}}

\begin{document}

\chapter{foo}

\end{document}

我已经添加了,\normalfont因为没有加载粗体版本的字体

相关内容