클래스에 지오메트리 옵션을 추가하면 "사용되지 않은 전역 옵션" 경고가 발생합니다.

클래스에 지오메트리 옵션을 추가하면 "사용되지 않은 전역 옵션" 경고가 발생합니다.

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}

관련 정보