setkomafont LARGE 导致不终止

setkomafont LARGE 导致不终止

我想使用 KOMA scrbook 增加目录中部分条目的字体大小。当我添加LARGEsetkomafont命令时,编译不再终止。为什么?在目录中设置字体大小的正确方法是什么?

相关问题:为什么setkomafont{disposition}命令稍后会与特定设置发生冲突?

\documentclass{scrbook}
    \KOMAoptions{paper=      
        128.5mm:198.4mm, %(5,06" x 7,91")  %ziel
        DIV=9,  %ziel kleines buch 
        fontsize=12pt,
    }

%%%% Sprache
\usepackage[german]{babel}  %scheint 

%%%% table of content
\setcounter{tocdepth}{0} %   1 gibt parts und chapter und sections

%%% schrift fuer alle eintraege
%\setkomafont{disposition}{\rmfamily\normalcolor}
%conflict with specific settings 

%
%%for table of content
\setkomafont{partentry}{\mdseries\scshape\lowercase\LARGE} %\LARGE loop
\setkomafont{chapterentry}{\mdseries\scshape\lowercase}
%

\usepackage{fontspec}

%%%%% FONTS 
\newfontfamily{\titlefont}{CormorantGaramond}   %for the titles



\begin{document}
    \frontmatter
        \tableofcontents

    \mainmatter

\part{ Philosophie}
\chapter{  \textit{Vom Schreiben}}

Man spricht davon, dass es heute schwierig sei zu schreiben. 

\end{document}

相关内容