禁止警告:“不建議將‘fancyhdr’套件與 KOMA-Script 類別一起使用(scrbook)。”

禁止警告:“不建議將‘fancyhdr’套件與 KOMA-Script 類別一起使用(scrbook)。”

我正在使用標題頁,這會導致以下錯誤:

不建議將「fancyhdr」套件與 KOMA-Script 類別一起使用(scrbook)。

它看起來工作正常,而且我fancyhdr在標題頁之外的任何地方都不使用包。所以我真的不需要修復警告,而是想抑制它。

我知道在 LaTeX 中抑制警告的唯一方法是包silence,但據我所知,我總是需要指定哪個包導致異常。

我如何抑制這個警告?

答案1

使用silence您提到的包效果很好:

\documentclass{scrbook}

\usepackage{silence}
\WarningFilter{scrbook}{Usage of package `fancyhdr'}

\usepackage{fancyhdr}

\begin{document}

\end{document}

相關內容