Newpagestyle 总是开始新的一页

Newpagestyle 总是开始新的一页

当我更改页面样式(\pagestyle{...})时,是否有任何选项可以阻止 Latex 开始新页面?

与此问题相关。每当我开始新的一章时,我都会在该章的第一页上获得“1”的页码,而我在页面样式中将其定义为“-1-”,但在第一页之后,它按定义工作。

在下面的代码中,您可以同时看到两个错误。第一页的页码为“1”。此外,在 \pagestyle{standard_begin} 行之后,将开始一个新页面。

\documentclass[a4paper,12pt,oneside]{book}
\usepackage{fancyhdr} % header and footer
  \usepackage{titlesec}
  \usepackage[left=2.4cm,right=3.8cm,top=1in,bottom=1.2in]{geometry}

\fancypagestyle{standard_begin}{%
%  \fancyhf{\thepage}
\newgeometry{top=5cm}
  \renewcommand{\headrulewidth}{0.0pt}
    \fancyhead{}
  \fancyfoot[CE,CO]{\footnotesize $-\;$\thepage $\;-$ }
}

\fancypagestyle{standard_intro}{%
%  \fancyhf{\thepage}
\newgeometry{top=1in}
  \renewcommand{\headrulewidth}{0.5pt}
    \fancyhead[LE]{}
    \fancyhead[RE]{\scriptsize\textbf{\RUNTITLE}\\\ Introduction}
    \fancyhead[RO]{\scriptsize\textbf{\RUNTITLE}\\\ Introduction}
    \fancyhead[LO]{}
  \fancyfoot[CE,CO]{\footnotesize $-\;$\thepage $\;-$ }
}

\begin{document}
\pagestyle{standard_intro}
\chapter{blab}
text text 
\pagestyle{standard_begin}
Text TextTextTextTextText
\end{document}

这里有什么想法吗?

太感谢了

相关内容