我有一个使用 as 文档类的文档scrbook
。我希望文本中的某些单词具有与章节标题完全相同的字体大小。
查阅文档,我发现对于类选项,headings=big|normal
部分标题字体大小为Large
,而对于 ,headings=small
则为large
。
如何在切换时始终拥有正确的字体大小,而headings=small
无需手动替换所有本地字体大小声明?换句话说:如何提取当前部分标题字体大小并将其转移到其他文本?
答案1
\documentclass[headings=small]{scrbook}
\newcommand*\fontsizeofsectionheadings{\usefontofkomafont{section}}
\begin{document}
\chapter{Test}
\section{chapter}
I need {\fontsizeofsectionheadings words} as {\fontsizeofsectionheadings big} as the section titles, even if \verb|headings=small|.
\end{document}