如下图所示,我想分别更改章节号“第 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}