我正在使用该termcal
软件包为下学期我教的课程创建日历。该日历嵌入在课程大纲中,需要使用 14pt 大小的字体排版。为了实现这一点,我尝试使用 14ptextarticle
字体的课程,但出于某种原因,这会在某一天的每个单元格中添加一个空行,并出现警告:
Underfull \hbox (badness 10000) in paragraph at lines 30--30
但是,正如下面的代码所示,我没有\\
在任何地方添加任何额外内容,因此问题消失一旦字体恢复为正常的 12pt。知道为什么会发生这种情况吗?以下是代码:
\documentclass[14pt]{extarticle}
\usepackage[margin=0.75in]{geometry}
\usepackage{termcal}
\renewcommand{\calprintclass}{}
\renewcommand{\calprintdate}{\monthname~\arabic{date}}
\begin{document}
\begin{calendar}{1/17/2022}{4}
\setlength{\calboxdepth}{.3in}
% Description of the Week.
\skipday
\calday[Tuesday]{\classday}
\skipday
\calday[Thursday]{\classday}
\skipday
\calday[Saturday]{\classday}
\skipday
% Holidays
%Detailed description
%Week1
\caltext{1/20/2022}{Lecture 1}
%Week2
\caltext{1/25/2022}{Problem Session 1}
\caltext{1/27/2022}{Problem Session 2}
\caltext{1/29/2022}{PS 1 due}
\end{calendar}
\end{document}