章节号和章节标题的字体大小

章节号和章节标题的字体大小

如下图所示,我想分别更改章节号“第 1 章”和标题“简介”的字体大小。有什么办法吗?我使用过该软件包,sectsty但它改变了两者的大小。我需要“第 1 章”小于标题“简介”。

在此处输入图片描述

答案1

report.cls\huge用于第 1 章和\Huge介绍。问题是,\documentclass{report}正常字体大小为 10pt,\Huge=\huge如果你设置,\documentclass[11pt]{report}你会看到不同。你可以sectsty像这样使用包

\documentclass{report}

\usepackage{sectsty}

\chapternumberfont{\tiny} 
\chaptertitlefont{\Huge}




\begin{document}
\chapter{introduction}
\end{document}

答案2

% arara: pdflatex

\documentclass{report}
\usepackage{titlesec}    
\titleformat{\chapter}[display]
{\normalfont%
    \huge% %change this size to your needs for the first line
    \bfseries}{\chaptertitlename\ \thechapter}{20pt}{%
    \Huge %change this size to your needs for the second line
    }

\begin{document}
\chapter{Introduction}
\section{Motivation}
\end{document}

相关内容