有没有办法在本地更改 KOMA Script 类的大小,比如我附录中的大小?我使用数据包选项headings=small,如果可能的话,我想让附录的章节标题更小一些。
谢谢!
答案1
1. 仅标题字体较小
\addtokomafont{chapter}{\small}
只需在使用以下命令启动附录部分后即可使用\appendix
:
\documentclass[headings=small]{scrreprt}
\usepackage{blindtext}
\begin{document}
\chapter{foo}
\blindtext \blindtext
\appendix
\addtokomafont{chapter}{\small} %% Here it goes
\chapter{foo}
\blindtext \blindtext
\chapter{bar}
\blindtext \blindtext
\end{document}
文本:
附录:
2. 标题和正文的字体较小
如果您希望附录中的所有文本都采用较小的字体大小,并相应地调整所有间距,请\KOMAoption{fontsize=size}
在同一位置使用:
\documentclass[headings=small]{scrreprt}
\usepackage{blindtext}
\begin{document}
\chapter{foo}
\blindtext \blindtext
\appendix
\KOMAoption{fontsize=9pt} %% Smaller everything
\chapter{foo}
\blindtext \blindtext
\chapter{bar}
\blindtext \blindtext
\end{document}
例子: