在类中添加几何选项会导致出现“未使用的全局选项”警告

在类中添加几何选项会导致出现“未使用的全局选项”警告

Unused global option(s):[showframe]虽然选项已传递给geometry包,但这个小例子仍会引发警告

\documentclass[showframe]{article}
\usepackage{geometry}

\begin{document} 

text

\end{document}

相同示例不会产生带有graphicx包的警告

\documentclass[demo]{article}
\usepackage{graphicx}

\begin{document} 

\includegraphics[width=5cm]{image}

\end{document}

相关内容