\headheight를 변경하면 바닥글이 페이지 밖으로 밀려납니다.

\headheight를 변경하면 바닥글이 페이지 밖으로 밀려납니다.

서문: 다음과 중복되지 않음머리 높이를 높이면 바닥글이 사라집니다.- 여기서 허용된 답변을 시도했지만 여전히 문제가 발생했습니다.


저는 Overleaf를 사용하여 소프트웨어에 대한 일부 문서를 만들고 fancyhdr을 사용하여 머리글과 바닥글을 사용자 정의하고 있습니다. 내 헤더에는 헤더를 다소 크게 만드는 이미지가 포함되어 있으므로 헤드 높이를 더 큰 값으로 늘리려면 LaTeX에서 오류가 발생합니다. 이것을 권장되는 67pt로 늘리면 오류가 제거되지만 바닥글이 페이지 밖으로 밀려납니다. 언뜻 보면 위에서 참조한 링크의 질문은 내가 필요한 것에 대한 1:1 미러 이미지이지만, 기하학을 통해 여백을 모두 1in으로 설정하여 includeheadfoot을 시도했지만 바닥글이 여전히 페이지에서 벗어났습니다. fancyhdr 문서를 철저하게 살펴봤지만 해결책을 찾을 수 없습니다. 다음은 바닥글을 페이지 밖으로 밀어내는 MWE입니다.

\documentclass[12pt]{article} 
\usepackage[utf8]{inputenc}
\usepackage{graphicx} 
\usepackage[includeheadfoot, margin=1in]{geometry}
\usepackage{fancyhdr} 
\usepackage{lastpage}
\setlength{\headheight}{67pt}
\pagestyle{fancy}
\fancyhf{} 

\fancyhead[C]{}
\lhead{\includegraphics[width=6cm]{image.PNG} \hfill \includegraphics[width=3cm]{image2.jpg}  \hfill \includegraphics[width=4cm]{image3.png}} 
\renewcommand{\headrulewidth}{0.4pt} 
\fancyfoot[R]{\small ~Page \thepage~of \pageref{LastPage}} 
\lfoot{\small Collections Guide \\ Last Updated: 07/28/2017}
\renewcommand{\footrulewidth}{0.4pt} 

\begin{document}

First line of the document.

Second line of the document.

\end{document}

아래쪽에서 1인치 여백에 바닥글을 유지하면서 \headheight 경고를 어떻게 제거합니까?

참고: 저는 약 2년 동안 매우 간단한 보고서에만 LaTeX를 사용해 왔습니다. 따라서 이것은 제가 지금까지 수행한 프로젝트 중 가장 정교한 프로젝트 중 하나입니다. 나중에 이 문제를 다시 방지할 수 있는 방법에 대한 통찰력에 감사드리며, 이 질문을 보다 간결하게 편집할 수 있는 방법을 알려주십시오.

답변1

기하학 옵션을 사용하여 머리 높이를 설정하여 기하학에 사용 중인 머리 높이를 알 수 있는 기회를 제공합니다.

\documentclass[12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage[includeheadfoot, margin=1in,headheight=67pt]{geometry}
\usepackage{hyperref}
\usepackage{fancyhdr}
\usepackage{titlesec}
\usepackage{lastpage}
\setcounter{secnumdepth}{0}
\setlength{\parskip}{4pt}
\titlespacing*{\section}{0pt}{2pt}{2pt}
\pagestyle{fancy}
\fancyhf{}

\fancyhead[C]{}
\lhead{\includegraphics[height=62pt]{example-image-duck}}
\renewcommand{\headrulewidth}{0.4pt}
\fancyfoot[R]{\small ~Page \thepage~of \pageref{LastPage}}
\lfoot{\small Collections Guide \\ Last Updated: 07/28/2017}
\renewcommand{\footrulewidth}{0.4pt}

\begin{document}

First line of the document.

Second line of the document.

\end{document}

여기에 이미지 설명을 입력하세요

관련 정보