最后一页(附录之前)未打印页码

最后一页(附录之前)未打印页码

我有一篇论文,其中我使用以下页码

\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}

相关内容