更改章节标题和章节编号的字体大小

更改章节标题和章节编号的字体大小

我想更改章节标题和章节编号的字体大小。

我的部分代码如下。

我希望章节的字体大于通过 实现的字体\Huge。对于我使用的文档类,有什么方法可以做到这一点吗?

\documentclass[a4paper,12pt,oneside]{report}
\usepackage[left=3.81cm,right=2.54cm,top=2.54cm,bottom=2.54cm]{geometry}

\usepackage{sectsty}

\chapternumberfont{\Huge} 
\newcommand{\chapfnt}{\fontsize{300}{250}}
\newcommand{\secfnt}{\fontsize{14}{17}}
\newcommand{\ssecfnt}{\fontsize{12}{14}}
\chaptertitlefont{\Huge}

我当前的字体大小如下:

在此处输入图片描述

答案1

\fontsize{<size>}{<baseline skip>}应遵循\selectfont以选择字体:

在此处输入图片描述

\documentclass{report}

\usepackage{sectsty,lmodern}

\begin{document}

\chapter{A chapter}

Lorem ipsum \ldots

\chapternumberfont{\fontsize{35pt}{32pt}\selectfont}
\chaptertitlefont{\fontsize{38pt}{35pt}\selectfont}

\chapter{A chapter}

Lorem ipsum \ldots

\end{document}

相关内容