다음 페이지 번호를 사용하는 논문 문서가 있습니다.
\documentclass[11pt,a4paper]{article}
\usepackage{fancyhdr}
\usepackage{setspace}
\lhead{}
\rhead{}
\chead{Very title\\ Very myself}
\cfoot{\thepage}
\begin{document}
\pagestyle{empty}
\newpage
\tableofcontents
\onehalfspace
\newpage
{\setstretch{1.5}
\pagestyle{fancy}
\setcounter{page}{1}
\section{Introduction}
...
\clearpage
\section{Conclusions and future work}
} % setstretch
\end{document}
결론 장의 마지막 페이지에는 페이지 번호가 인쇄되지 않습니다. 그 장 이후에는 부록이 거의 없고 거기에도 페이지 번호가 필요하지 않지만 결론 장의 마지막 페이지까지 페이지 번호가 필요합니다.
뭐가 잘못 되었 니? 페이지에 페이지 번호를 강제로 인쇄하려면 무엇을 추가할 수 있나요?
편집하다
설명된 문제가 있는 코드를 추가했습니다. 마지막 페이지(결론 장 포함)에 페이지 번호가 없습니다.
답변1
\pagestyle
페이지 스타일을 로컬로 적용하므로 이를 넣어야 합니다.~ 전에에 대한 그룹을 호출 \setstretch
하거나 \clearpage
그룹이 끝나기 직전에 호출하는 것이 더 좋습니다.
\documentclass[11pt,a4paper]{article}
\usepackage{fancyhdr}
\usepackage{setspace}
\lhead{}
\rhead{}
\chead{Very title\\ Very myself}
\cfoot{\thepage}
\begin{document}
\pagestyle{empty}
\newpage
\tableofcontents
\onehalfspace
\newpage
\pagestyle{fancy}
{\setstretch{1.5}
\setcounter{page}{1}
\section{Introduction}
...
\clearpage
\section{Conclusions and future work}
} % setstretch
\end{document}