最後のページ(付録の前)にページ番号が印刷されない

最後のページ(付録の前)にページ番号が印刷されない

私は論文で次のようなページ番号を使用しています

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

関連情報