使用 \printindex 和 scrlayer-scrpage 导致 \hbox 未满

使用 \printindex 和 scrlayer-scrpage 导致 \hbox 未满

在使用来scrlayer-scrpage格式化 KOMA 脚本类的标题时scrartcl,我收到以下警告\printindex

\output 处于活动状态时,\hbox 未满(不良率 10000)

这是我的代码:

\documentclass[12pt,a4paper,parskip=half]{scrartcl}  % A4 paper and 12pt font size
\usepackage[headsepline,automark]{scrlayer-scrpage}
\usepackage{makeidx}        % glossary
\usepackage{hyperref}

\makeindex                  % make index

% Header
\clearpairofpagestyles      
\ihead{\leftmark}
\ohead{\pagemark}

\begin{document}

Test\index{Test}

\printindex

\end{document}

省略\printindex即可消除警告。如何在使用上述标题格式的同时打印索引页而不出现警告?

相关内容