
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}