レターモジュールの履歴書の最初のページからページ番号を削除します

レターモジュールの履歴書の最初のページからページ番号を削除します

現代のサンプルのような文書https://wiki.contextgarden.net/Curriculum_Vitae#Stripped_down_example1 ページしか生成されていない場合でも、ページ番号が含まれます。 を使用しても\setuppagenumbering[location=]ページ番号は削除されません。

どうすればこれができるのでしょうか。何か明らかなことを見逃しているに違いありません。

答え1

renderingsetupのをクリアする必要がありますresumelayeralternative。見つけられなかったとしても責められません。どこにも文書化されていません。私はただソースコードそれを見つけるために。

\setupresumelayeralternative
  [nextfoot:classic]
  [renderingsetup=]

完全なMWE:

\usemodule[resume]

\setupresumelayeralternative
  [nextfoot:classic]
  [renderingsetup=]

%\useresumestyle[casual-blue]
\useresumestyle[classic-blue]

\setupresumeoptions
  [bodyfont=calluna]

\setupresume
  [firstname=John,
   familyname=Doe,
   title=Resumé title (optional),% classic style only
   quote=My quote,% casual style only
   image={\externalfigure[dummy][width=3cm,height=4cm]}]

\setupresume
  [street={street and number},
   town={postcode city},
   mobile={+1(234)567890},
   phone={+2(345)678901},
   fax={+3(456)789012},
   email={[email protected]},
   info={additional information}]

\startresume

\startresumesection[title={Knuth}]

\startresumesubsection[title={Zapf}]

\starttwocolumns
\input ward
\stoptwocolumns

\stopresumesubsection

\stopresumesection

\page

\startresumesection[title={Knuth}]

\startresumesubsection[title={Zapf}]

\starttwocolumns
\input ward
\stoptwocolumns

\stopresumesubsection

\stopresumesection

\stopresume

ここに画像の説明を入力してください

関連情報