我希望该章节的字体大小为 14pt。我使用下面的代码,但不起作用。我不知道为什么。如果有人能帮助我,我将不胜感激。
\usepackage{sectsty} \chapterfont{\large\bfseries}
这是我的班级文档
\documentclass[12pt, twoside, a4paper]{report}
\documentclass[12pt, twoside, a4paper]{report}
\usepackage{sectsty}
\chapterfont{\large\bfseries}
\begin{document}
\chapter{Abc}
xxx
\end{document}
此代码使章节字体大小为 12pt,部分字体大小为 12pt,子部分为 12pt。部分和子部分都可以,但我想将章节设置为 14pt。这是我使用的代码。
\usepackage{sectsty}
\chapterfont{\fontsize{14}{17}\selectfont\bfseries}
\allsectionsfont{\normalsize\bfseries}
\makeatletter
\renewcommand\subsection{\@startchapter{chapter}{2}{\z@}%
{-3.25ex\@plus -1ex \@minus -.2ex}%
{1.5ex \@plus .2ex}%
% {\normalfont\large\bfseries}}
{\normalfont}}
\makeatother
\makeatletter
\renewcommand\subsection{\@startsection{subsection}{2}{\z@}%
{-3.25ex\@plus -1ex \@minus -.2ex}%
{1.5ex \@plus .2ex}%
% {\normalfont\large\bfseries}}
{\normalfont\itshape}}
\makeatother
``