使用回忆录的更大撒切尔章节编号

使用回忆录的更大撒切尔章节编号

我希望撒切尔章节号稍微大一点或更好一点,尝试检查,,,tiny...等的结果scriptsizefootnotesizesmall

在此处输入图片描述

这是我的 MWE:

\documentclass[14pt,twoside,a5paper,extrafontsizes]{memoir} %Classe estilo memoir
\usepackage[brazilian]{babel} %Traduz doc para português do Brasil
\usepackage[utf8]{inputenc} %Reconhece acentuação
\usepackage{garamondx} %Define a nova fonte garamond
\usepackage{lipsum}

\chapterstyle{thatcher}

\begin{document} %=========================================================================
    \renewcommand{\printchaptername}{\centering{\chapnumfont\thechapter}} %remove a string

    \chapter{THE TITLE OF THE CHAPTER}
        \lipsum

\end{document}

有没有办法只改变数字字体?

答案1

你可以改变

\renewcommand{\printchaptername}{\centering{\chapnumfont\thechapter}}

比如说,

\renewcommand{\printchaptername}{\centering{\chapnumfont\HUGE\thechapter}}

完整的 MWE:

在此处输入图片描述

\documentclass[14pt,twoside,a5paper,extrafontsizes]{memoir}
\usepackage[brazilian]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{ebgaramond} % I don't have 'garamondx' on my system
\usepackage{lipsum,microtype}

\chapterstyle{thatcher}
\renewcommand{\printchaptername}{\centering{\HUGE\scshape\thechapter}} % or \huge, \Huge, ...

\begin{document} 

\chapter[Short Title]{THE TITLE OF THE CHAPTER}
\lipsum[1]

\end{document}

相关内容