Textpos 仅在一页上

Textpos 仅在一页上

我正在使用Friggeri 简历风格,并且它不适合多页。它有一个使用 textpos 的 aside 环境,它只出现在第一页 — — 但是它的空间也存在于后续页面中。

\RequirePackage[absolute,overlay]{textpos}
\setlength{\TPHorizModule}{1cm}
\setlength{\TPVertModule}{1cm}
\newenvironment{aside}{%
  \let\oldsection\section
  \renewcommand{\section}[1]{
    \par\vspace{\baselineskip}{\Large\headingfont\color{headercolor} ##1}
  }
  \begin{textblock}{3.6}(1.5, 4.33)
  \begin{flushright}
  \obeycr
}{%
  \restorecr
  \end{flushright}
  \end{textblock}
  \let\section\oldsection
}

我已经知道如何使用 scrpage2 自定义页面之间的页码,但我不太清楚如何将侧边距限制在第一页。有人可以提供一些建议吗?

答案1

正如我发现的http://www.howtotex.com/tips-tricks/change-margins-of-a-single-page/您只需开始一个新页面并使用\newgeometry命令重新定义新的页面尺寸。

\newpage
\newgeometry{left=2.1cm}

\新几何

相关内容