
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}