刪除信件模組簡歷首頁的頁碼

刪除信件模組簡歷首頁的頁碼

類似於現代範例的文檔https://wiki.contextgarden.net/Curriculum_Vitae#Stripped_down_example即使只產生一頁,也包含頁碼。使用\setuppagenumbering[location=]不會刪除頁碼。

如何才能做到這一點。我確信我錯過了一些明顯的東西。

答案1

你必須清除renderingsetupresumelayeralternative.我不怪你沒有找到它。它沒有記錄在任何地方。我剛剛瀏覽了原始碼找到它。

\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

在此輸入影像描述

相關內容