使用 termcal.sty 时出现意外的垂直空间

使用 termcal.sty 时出现意外的垂直空间

创建周二至周四的日程安排并调整日历宽度(例如两列格式)时,周二会出现意外的垂直空间。周一至周三的日程安排不会出现这种情况

\documentclass{article}
\usepackage{termcal}

\begin{document}


\begin{calendar}{8/29/2016}{3}

\setlength{\calboxdepth}{.5in}
\setlength{\calwidth}{3in} % <----- If this is set to 2in per weekday or above the problem disappears.

\skipday % Monday (no class)
\calday[Tuesday]{\classday} % Tuesday
\skipday % Wednesday (school in summer)
\calday[Thursday]{\classday} % Thursday
\skipday % Friday (no class)
\skipday\skipday % weekend (no class)


\end{calendar}

\end{document}

编译最小工作示例

答案1

就开学第一天的情况来说吧:

\documentclass{article}
\usepackage{termcal}
\begin{document}
\begin{calendar}{8/30/2016}{3}
\setlength{\calboxdepth}{.5in}%
\setlength{\calwidth}{3in}% <----- If this is set to 2in per weekday or above the problem disappears.
\calday[Tuesday]{\classday}% Tuesday
\skipday % Wednesday (school in summer)
\calday[Thursday]{\classday}% Thursday
\skipday % Friday (no class)
\skipday\skipday\skipday % weekend (no class)
\end{calendar}
\end{document}

整理时间表

相关内容