diff --git a/rem2pdf/bin/rem2pdf.in b/rem2pdf/bin/rem2pdf.in index 9c9722bc..c68fe258 100644 --- a/rem2pdf/bin/rem2pdf.in +++ b/rem2pdf/bin/rem2pdf.in @@ -81,17 +81,17 @@ Usage: remind -pp [options] filename | $me [options] > out.pdf Options: --landscape, -l Print in landscape orientation ---small-calendars=N Choose location for small calendars +--small-calendars=N Location for small calendars (monthly calendars only) --svg Output SVG instead of PDF --ps Output PostScript instead of PDF --eps Output encapsulated PostScript instead of PDF -cN Synonym for --small-calendars=N ---left-numbers, -x Print day numbers on the left ---fill-page, -e Fill the entire page +--left-numbers, -x Print day numbers on the left (monthly calendars only) +--fill-page, -e Fill the entire page (monthly calendars only) --media=MEDIA, -mMEDIA Size for specified media --width=W, -wW Specify media width in 1/72nds of an inch --height=H, -hH Specify media height in 1/72nds of an inch ---wrap, -y Make calendar fit in at most 5 rows +--wrap, -y Make calendar fit in 5 rows (monthly calendars only) --title-font=FONT Specify font for calendar title --header-font=FONT Specify font for weekday names --daynum-font=FONT Specify font for day numbers diff --git a/rem2pdf/lib/Remind/PDF.pm b/rem2pdf/lib/Remind/PDF.pm index c9d8ed79..b3306b1f 100644 --- a/rem2pdf/lib/Remind/PDF.pm +++ b/rem2pdf/lib/Remind/PDF.pm @@ -1045,6 +1045,9 @@ sub render } $self->draw_lines($cr, $settings); $cr->show_page(); + if ($settings->{verbose}) { + print STDERR "remdp2f: Rendered " . $self->{dates}->[0]->{date} . " to " . $self->{dates}->[6]->{date} . "\n"; + } } sub draw_headings