여백 설정이 일관되지 않음

여백 설정이 일관되지 않음

저는 현재 논문을 작성 중입니다. 텍스트 여백 요구 사항은 위쪽 2cm, 오른쪽 2cm, 왼쪽 4cm, 아래쪽 2cm입니다. 내 설정은 장 제목이 있는 페이지를 제외한 모든 페이지에 적용됩니다. 어쨌든 해결 방법이 있나요? 나는 pdfLaTeX 컴파일러를 사용하고 있습니다.

**\documentclass[12pt,a4paper]{report}

\usepackage{amsmath, amsthm, amssymb}
\usepackage{array}
\usepackage{anysize}
\usepackage{faktor} 
\usepackage{placeins}
\usepackage{float}
\usepackage{enumerate}
\usepackage{fancyhdr}%for page number font
\usepackage{lmodern}%also for page number font
\usepackage[pdftex]{graphicx}
\usepackage{caption}
\usepackage{booktabs, calc, cleveref}
\usepackage{mathptmx}%Font: Times New Roman
\usepackage{setspace}
\usepackage[font={small},labelfont=bf]{caption}
\usepackage[titles]{tocloft}
\usepackage[notquote]{hanging}
\usepackage{sectsty}.
  \chapternumberfont{\nohang\centering\large\MakeUppercase} 
  \chaptertitlefont{\nohang\centering\large\MakeUppercase}
  \sectionfont{\fontsize{12}{15}\selectfont}
\usepackage{tikz}
\usepackage[final]{pdfpages}
\usepackage[footskip=1cm]{geometry}
\geometry{
   left=40mm,
   right=20mm,
   top=20mm,
   bottom=20mm,
 }
 %%%%%%%
\renewcommand{\cftchapleader}{\cftdotfill{\cftdotsep}}
\renewcommand\cftchappresnum{CHAPTER } 
   \cftsetindents{chapter}{0em}{6em}      

\pagestyle{fancy}
\lhead{}
\chead{}
\rhead{}
\lfoot{}
\cfoot{}
\rfoot{\thepage}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}
 %%%%
\fancypagestyle{plain}{
\fancyfoot{}
\fancyfoot[R]{\fontsize{10pt}{10pt}\selectfont\thepage}
\renewcommand{\headrulewidth}{0pt}
\renewcommand{\footrulewidth}{0pt}}
\pagestyle{plain}
%%%%
\renewcommand{\contentsname}{Table of Contents}
\renewcommand{\bibname}{REFERENCES}
%%%%%

\setstretch{2}
%%%%%%%%%%%

\begin{document}
\pagenumbering{arabic} 
\setcounter{page}{1}
%Chapter 1
\chapter{\MakeUppercase{INTRODUCTION}}

\section{Background of study} 
Associating a group with a graph and finding relationships between them is 
an area of research that has generated much interest. Research on this 
subject aims at investigating relationships between groups and graphs and at 
exploring applications of one to the other.
\newpage
The main contributions of this work
\end{document}**

관련 정보