evweek
我正在尝试使用带有类选项的包来制作两页的每周日历ferial
。
以下文件可以正常工作:
\documentclass[a4paper,ferial]{evweek}
\usepackage[paperwidth=297mm,paperheight=210mm]{geometry}
\begin{document}
\begin{weekly}%
{ firstday=1,
pageheight=280mm,
pagewidth=181mm,
topspace=0.5mm,
bottomspace=0mm,
grip=0mm,
punchpoints=0,
punchcluster=0,
punchgroups=0
}%
{}
may 6 2013 to may 12 2013
\end{weekly}
\end{document}
\usepackage{fontspec}
因为我需要用希腊语表示的周历,所以我使用了 XeLaTeX,它可以与之前的文件一起使用,但在添加时不起作用:
\documentclass[a4paper,ferial]{evweek}
\usepackage[paperwidth=297mm,paperheight=210mm]{geometry}
\usepackage{fontspec}
\begin{document}
\begin{weekly}%
{ firstday=1,
pageheight=280mm,
pagewidth=181mm,
topspace=0.5mm,
bottomspace=0mm,
grip=0mm,
punchpoints=0,
punchcluster=0,
punchgroups=0
}%
{}
may 6 2013 to may 12 2013
\end{weekly}
\end{document}
所发生的情况是,两页合并为一页,并且第二页的输出叠加在第一页上(尽管它移到了页面的底部)。
任何想法为什么会发生这种情况以及如何解决;