我正在将此代码用于我的研讨会论文:
\documentclass[headings=small,fontsize=12pt,a4paper,oneside,]{scrreprt}
但我想知道:有多少pt headings=small
?看起来像是14pt,但我不确定。
我的\chapter
必须是 14pt,书面文字必须是 12pt。有没有关于这个的概述,比如巨大、大、正常、微小……?
答案1
KOMA-Script 使用类选项文件scrsize12pt.clo
With option fontsize=12pt
。它定义 (fontsize/baselineskip):
\normalsize
:12pt/14.5pt\small
:11pt/13.6pt\footnotesize
:10pt/12pt\scriptsize
:8pt/9.5pt\tiny
:6pt/8pt\large
:14pt/18pt\Large
:17pt/22pt\LARGE
:20pt/25pt\huge
:25pt/30pt\Huge
: \巨大的
Classscrrprt.cls
使用选项headings=small
为章节标题指定以下大小:
\part
:\LARGE
\chapter
:\Large
\section
:\large
\subsection
:\normalsize
\subsubsection
:\normalsize
\paragraph
:\normalsize
\subparagraph
:\normalsize
文档包含一个表格,其中列出了具有不同选项设置的部分命令的不同字体大小headings
(scrguien.pdf
,2012-07-22):
表 3.15.:scrbook 和 scrreprt 中不同级别文档结构的默认字体大小
因此,您的\section
字体大小为 14pt。可以重新定义章节的字体大小,例如:
\makeatletter
\renewcommand*{\size@chapter}{\large}
\makeatother
或者更好的是,使用官方界面:
\addtokomafont{chapter}{\large}