1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
|
.\" colitur wall calendar -- groff ms with tbl. flavour: groff
.\" Build: colitur table --year 2027 --template grid.ms | groff -ms -t -Tpdf -P-pa4l > grid.pdf
.\"
.\" LANDSCAPE, not the ms default portrait: with allbox cells and Latin-less
.\" days falling back to the raw slug (some fallback slugs run past 40
.\" characters, e.g. "commemoration-of-the-baptism-of-the-lord"), seven
.\" columns of real content do not fit a portrait line length at any
.\" reasonable point size. "-P-pa4l" is gropdf's own landscape papersize
.\" (groff_font(5): a trailing "l" on a papersize name swaps width/height at
.\" the OUTPUT DEVICE level) -- it must be a command-line flag, not a request
.\" inside this file: an in-document "\X'papersize=a4l'" escape was tried and
.\" rejected (it does not actually rotate gropdf's page in this groff, and
.\" throws diagnostics doing it). ".pl"/".po"/".ll" below independently widen
.\" TROFF's OWN idea of the page to match -- ".pl"/".ll" are requests, unlike
.\" the device's own physical page size, and are not implied by "-P-pa4l" --
.\" so both halves are needed, or one side clips the other.
.\"
.\" ".TL" (the ms title macro, s.tmac) ITSELF narrows the line length to
.\" 5/6 of register "LL" for the title text, and never widens it back
.\" afterward -- there is no third place in s.tmac that ever does. Setting
.\" only the primitive ".ll" before ".TL" is therefore not enough: ".TL"
.\" overwrites it and every table for the rest of the document inherits
.\" the NARROWED value, silently, which is a second, independent way the
.\" original template lost its width (found by reading s.tmac itself, not
.\" guessed). Fixed by setting register "LL" (what ".TL" actually reads)
.\" and re-asserting ".ll" once more, explicitly, right after the title.
.\"
.\" Every column is a FIXED-WIDTH, WRAPPING tbl "w()" block, not a plain "l":
.\" without "w()" tbl sizes a column to its single widest entry and does NOT
.\" wrap, so a 40-character slug forces every column that wide -- seven of
.\" them together run far past any line length, tbl warns "table wider than
.\" line length", and whatever falls past the physical page edge is not a
.\" rendering nicety missing, it is GONE: `pdftotext -layout` (and a printed
.\" page) show only however many columns fit, not all seven. "w()" makes
.\" each column wrap its own text block instead, the same fix grid.tex
.\" already uses via LaTeX's "p{2.6cm}" (see that file's own comment) --
.\" this is the tbl-native equivalent, not a different design.
.\"
.\" "w()" alone is NOT sufficient, and this is the part that actually cost
.\" the time: tbl only wraps a cell as a text block when its content is
.\" delimited by "T{"/"T}" on their own lines. A PLAIN cell entry in a
.\" "w()" column (what the first attempt at this fix used) is never
.\" wrapped at all -- tbl just widens the column past the requested "w()"
.\" to fit the single longest unbroken entry, exactly reproducing the
.\" original bug. Confirmed directly against tbl's own generated troff
.\" code (`tbl grid.ms`, grep "3w0 .*>?"): every column width register is
.\" `max(w(), \w'cell text')`, so an un-delimited 40-character cell always
.\" wins that max. Every day cell below is therefore its own "T{"/"T}"
.\" block; the closing "T}" and the following column's opening "T{" share
.\" one line with the tab between them (the standard tbl idiom: "T}<TAB>
.\" T{"). The template writes that as "T}
.\" <TAB>" rather than "T}<TAB>T{" so that no
.\" literal "T{" ever sits directly against a "" delimiter in the
.\" source -- three braces in a row there parses as a malformed tag, not
.\" as literal text followed by a tag.
.\"
.\" ".na" (no-adjust, ragged right) is required alongside the wrap, not
.\" cosmetic: a hyphenated slug like "commemoration-of-the-baptism-of-the-
.\" lord" DOES break at its own hyphens once wrapping is active (verified:
.\" troff's filler treats an ASCII hyphen as a break point), but adjusted
.\" (justified) fill in a column this narrow cannot always stretch such a
.\" line to the full measure and troff warns "cannot adjust line" for
.\" every such row -- another warning `make check-templates` must fail on.
.\" Ragged-right removes the stretching, not the wrapping.
.\"
.\" The observed day's own display name is a PLAIN resolved string
.\" (View.of_days, Task 5), not a lang-keyed object -- there is no
.\" dotted-la-with-slug-fallback idiom to write here any more (see
.\" ordo.ms's own header comment for the full reasoning).
.\"
.\" The weekday header row comes from the view's own top-level
.\" weekday_headings list (name/last objects), not a hard-coded Dom/Lun/Mar
.\" row -- the same localisation reasoning as grid.tex's own header
.\" comment, and the same reason it cannot be a bare current-value
.\" reference: this engine rejects an empty tag path as a parse error, so a
.\" loop over this list must name a field on each heading object.
.\"
.\" Every cell also carries a last flag, true on the seventh of its row: tbl
.\" needs the tab separator BETWEEN columns, not after the last one, and the
.\" engine has no unless-last construct, so the flag comes from data.
.pl 8.27i
.po 0.3i
.nr LL 10.9i
.ll \n[LL]u
.TL
Calendarium 2027 \(bu ef
.ll \n[LL]u
.na
.SH
January
.TS
allbox;
cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i)
lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i).
Sunday Monday Tuesday Wednesday Thursday Friday Saturday
T{
T} T{
T} T{
T} T{
T} T{
T} T{
\fB1\fP \s-2The Octave Day of the Nativity\s+2
T} T{
\fB2\fP \s-2Our Lady's Saturday Office\s+2
T}
T{
\fB3\fP \s-2The Holy Name of Jesus\s+2
T} T{
\fB4\fP \s-2Monday before Epiphany\s+2
T} T{
\fB5\fP \s-2Tuesday before Epiphany\s+2
T} T{
\fB6\fP \s-2The Epiphany of Our Lord\s+2
T} T{
\fB7\fP \s-2Thursday after Epiphany\s+2
T} T{
\fB8\fP \s-2Friday after Epiphany\s+2
T} T{
\fB9\fP \s-2Our Lady's Saturday Office\s+2
T}
T{
\fB10\fP \s-2The Holy Family\s+2
T} T{
\fB11\fP \s-2Monday of the 1st Week of the Time after Epiphany\s+2
T} T{
\fB12\fP \s-2Tuesday of the 1st Week of the Time after Epiphany\s+2
T} T{
\fB13\fP \s-2Commemoration of the Baptism of the Lord\s+2
T} T{
\fB14\fP \s-2St. Hilary\s+2
T} T{
\fB15\fP \s-2St. Paul, the First Hermit\s+2
T} T{
\fB16\fP \s-2St. Marcellus I\s+2
T}
T{
\fB17\fP \s-22nd Sunday after Epiphany\s+2
T} T{
\fB18\fP \s-2Monday of the 2nd Week of the Time after Epiphany\s+2
T} T{
\fB19\fP \s-2Tuesday of the 2nd Week of the Time after Epiphany\s+2
T} T{
\fB20\fP \s-2Sts. Fabian & Sebastian\s+2
T} T{
\fB21\fP \s-2St. Agnes\s+2
T} T{
\fB22\fP \s-2Sts. Vincent & Anastasius\s+2
T} T{
\fB23\fP \s-2St. Raymond of Peñafort\s+2
T}
T{
\fB24\fP \s-2Septuagesima Sunday\s+2
T} T{
\fB25\fP \s-2Conversion of St. Paul\s+2
T} T{
\fB26\fP \s-2St. Polycarp\s+2
T} T{
\fB27\fP \s-2St. John Chrysostom\s+2
T} T{
\fB28\fP \s-2St. Peter Nolasco\s+2
T} T{
\fB29\fP \s-2St. Francis de Sales\s+2
T} T{
\fB30\fP \s-2St. Martina\s+2
T}
T{
\fB31\fP \s-2Sexagesima Sunday\s+2
T} T{
T} T{
T} T{
T} T{
T} T{
T} T{
T}
.TE
.SH
February
.TS
allbox;
cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i)
lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i).
Sunday Monday Tuesday Wednesday Thursday Friday Saturday
T{
T} T{
\fB1\fP \s-2St. Ignatius of Antioch\s+2
T} T{
\fB2\fP \s-2Purification of the Blessed Virgin Mary\s+2
T} T{
\fB3\fP \s-2Wednesday of the 2nd Week of Septuagesimatide\s+2
T} T{
\fB4\fP \s-2St. Andrew Corsini\s+2
T} T{
\fB5\fP \s-2St. Agatha\s+2
T} T{
\fB6\fP \s-2St. Titus\s+2
T}
T{
\fB7\fP \s-2Quinquagesima Sunday\s+2
T} T{
\fB8\fP \s-2St. John of Matha\s+2
T} T{
\fB9\fP \s-2St. Cyril of Alexandria\s+2
T} T{
\fB10\fP \s-2Ash Wednesday\s+2
T} T{
\fB11\fP \s-2Thursday after Ash Wednesday\s+2
T} T{
\fB12\fP \s-2Friday after Ash Wednesday\s+2
T} T{
\fB13\fP \s-2Saturday after Ash Wednesday\s+2
T}
T{
\fB14\fP \s-21st Sunday of Lent\s+2
T} T{
\fB15\fP \s-2Monday of the 1st Week of Lent\s+2
T} T{
\fB16\fP \s-2Tuesday of the 1st Week of Lent\s+2
T} T{
\fB17\fP \s-2Lenten Ember Wednesday\s+2
T} T{
\fB18\fP \s-2Thursday of the 1st Week of Lent\s+2
T} T{
\fB19\fP \s-2Lenten Ember Friday\s+2
T} T{
\fB20\fP \s-2Lenten Ember Saturday\s+2
T}
T{
\fB21\fP \s-22nd Sunday of Lent\s+2
T} T{
\fB22\fP \s-2Chair of St. Peter\s+2
T} T{
\fB23\fP \s-2Tuesday of the 2nd Week of Lent\s+2
T} T{
\fB24\fP \s-2St. Matthias\s+2
T} T{
\fB25\fP \s-2Thursday of the 2nd Week of Lent\s+2
T} T{
\fB26\fP \s-2Friday of the 2nd Week of Lent\s+2
T} T{
\fB27\fP \s-2Saturday of the 2nd Week of Lent\s+2
T}
T{
\fB28\fP \s-23rd Sunday of Lent\s+2
T} T{
T} T{
T} T{
T} T{
T} T{
T} T{
T}
.TE
.SH
March
.TS
allbox;
cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i)
lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i).
Sunday Monday Tuesday Wednesday Thursday Friday Saturday
T{
T} T{
\fB1\fP \s-2Monday of the 3rd Week of Lent\s+2
T} T{
\fB2\fP \s-2Tuesday of the 3rd Week of Lent\s+2
T} T{
\fB3\fP \s-2Wednesday of the 3rd Week of Lent\s+2
T} T{
\fB4\fP \s-2Thursday of the 3rd Week of Lent\s+2
T} T{
\fB5\fP \s-2Friday of the 3rd Week of Lent\s+2
T} T{
\fB6\fP \s-2Saturday of the 3rd Week of Lent\s+2
T}
T{
\fB7\fP \s-24th Sunday of Lent\s+2
T} T{
\fB8\fP \s-2Monday of the 4th Week of Lent\s+2
T} T{
\fB9\fP \s-2Tuesday of the 4th Week of Lent\s+2
T} T{
\fB10\fP \s-2Wednesday of the 4th Week of Lent\s+2
T} T{
\fB11\fP \s-2Thursday of the 4th Week of Lent\s+2
T} T{
\fB12\fP \s-2Friday of the 4th Week of Lent\s+2
T} T{
\fB13\fP \s-2Saturday of the 4th Week of Lent\s+2
T}
T{
\fB14\fP \s-2Passion Sunday\s+2
T} T{
\fB15\fP \s-2Monday of the 1st Week of Passion Week\s+2
T} T{
\fB16\fP \s-2Tuesday of the 1st Week of Passion Week\s+2
T} T{
\fB17\fP \s-2Wednesday of the 1st Week of Passion Week\s+2
T} T{
\fB18\fP \s-2Thursday of the 1st Week of Passion Week\s+2
T} T{
\fB19\fP \s-2St. Joseph, Spouse of the Bl. Virgin Mary\s+2
T} T{
\fB20\fP \s-2Saturday of the 1st Week of Passion Week\s+2
T}
T{
\fB21\fP \s-2Palm Sunday\s+2
T} T{
\fB22\fP \s-2Monday of Holy Week\s+2
T} T{
\fB23\fP \s-2Tuesday of Holy Week\s+2
T} T{
\fB24\fP \s-2Wednesday of Holy Week (Spy Wednesday)\s+2
T} T{
\fB25\fP \s-2Holy Thursday (Maundy Thursday)\s+2
T} T{
\fB26\fP \s-2Good Friday\s+2
T} T{
\fB27\fP \s-2Holy Saturday\s+2
T}
T{
\fB28\fP \s-2Easter Sunday\s+2
T} T{
\fB29\fP \s-2Monday of Easter Week\s+2
T} T{
\fB30\fP \s-2Tuesday of Easter Week\s+2
T} T{
\fB31\fP \s-2Wednesday of Easter Week\s+2
T} T{
T} T{
T} T{
T}
.TE
.SH
April
.TS
allbox;
cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i)
lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i).
Sunday Monday Tuesday Wednesday Thursday Friday Saturday
T{
T} T{
T} T{
T} T{
T} T{
\fB1\fP \s-2Thursday of Easter Week\s+2
T} T{
\fB2\fP \s-2Friday of Easter Week\s+2
T} T{
\fB3\fP \s-2Saturday of Easter Week\s+2
T}
T{
\fB4\fP \s-2Low Sunday (Sunday in Easter Octave)\s+2
T} T{
\fB5\fP \s-2Annunciation of the Blessed Virgin Mary\s+2
T} T{
\fB6\fP \s-2Tuesday of the 2nd Week of Eastertide\s+2
T} T{
\fB7\fP \s-2Wednesday of the 2nd Week of Eastertide\s+2
T} T{
\fB8\fP \s-2Thursday of the 2nd Week of Eastertide\s+2
T} T{
\fB9\fP \s-2Friday of the 2nd Week of Eastertide\s+2
T} T{
\fB10\fP \s-2Our Lady's Saturday Office\s+2
T}
T{
\fB11\fP \s-22nd Sunday after Easter\s+2
T} T{
\fB12\fP \s-2Monday of the 3rd Week of Eastertide\s+2
T} T{
\fB13\fP \s-2St. Hermenegild\s+2
T} T{
\fB14\fP \s-2St. Justin\s+2
T} T{
\fB15\fP \s-2Thursday of the 3rd Week of Eastertide\s+2
T} T{
\fB16\fP \s-2Friday of the 3rd Week of Eastertide\s+2
T} T{
\fB17\fP \s-2Our Lady's Saturday Office\s+2
T}
T{
\fB18\fP \s-23rd Sunday after Easter\s+2
T} T{
\fB19\fP \s-2Monday of the 4th Week of Eastertide\s+2
T} T{
\fB20\fP \s-2Tuesday of the 4th Week of Eastertide\s+2
T} T{
\fB21\fP \s-2St. Anselm\s+2
T} T{
\fB22\fP \s-2Sts. Soter & Caius\s+2
T} T{
\fB23\fP \s-2Friday of the 4th Week of Eastertide\s+2
T} T{
\fB24\fP \s-2St. Fidelis of Sigmaringen\s+2
T}
T{
\fB25\fP \s-24th Sunday after Easter\s+2
T} T{
\fB26\fP \s-2Sts. Cletus & Marcellinus\s+2
T} T{
\fB27\fP \s-2St. Peter Canisius\s+2
T} T{
\fB28\fP \s-2St. Paul of the Cross\s+2
T} T{
\fB29\fP \s-2St. Peter of Verona\s+2
T} T{
\fB30\fP \s-2St. Catherine of Siena\s+2
T} T{
T}
.TE
.SH
May
.TS
allbox;
cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i)
lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i).
Sunday Monday Tuesday Wednesday Thursday Friday Saturday
T{
T} T{
T} T{
T} T{
T} T{
T} T{
T} T{
\fB1\fP \s-2St. Joseph the Workman\s+2
T}
T{
\fB2\fP \s-25th Sunday after Easter\s+2
T} T{
\fB3\fP \s-2Rogation Monday\s+2
T} T{
\fB4\fP \s-2St. Monica\s+2
T} T{
\fB5\fP \s-2Vigil of the Ascension\s+2
T} T{
\fB6\fP \s-2The Ascension of Our Lord\s+2
T} T{
\fB7\fP \s-2St. Stanislaus\s+2
T} T{
\fB8\fP \s-2Our Lady's Saturday Office\s+2
T}
T{
\fB9\fP \s-2Sunday after the Ascension\s+2
T} T{
\fB10\fP \s-2St. Antoninus\s+2
T} T{
\fB11\fP \s-2Sts. Philip & James\s+2
T} T{
\fB12\fP \s-2Sts. Nereus, Achilleus, Domitilla, & Pancras\s+2
T} T{
\fB13\fP \s-2St. Robert Bellarmine\s+2
T} T{
\fB14\fP \s-2Friday of the 7th Week of Eastertide\s+2
T} T{
\fB15\fP \s-2Vigil of Pentecost\s+2
T}
T{
\fB16\fP \s-2Pentecost Sunday (Whitsunday)\s+2
T} T{
\fB17\fP \s-2Monday of Pentecost Week\s+2
T} T{
\fB18\fP \s-2Tuesday of Pentecost Week\s+2
T} T{
\fB19\fP \s-2Pentecost Ember Wednesday\s+2
T} T{
\fB20\fP \s-2Thursday of Pentecost Week\s+2
T} T{
\fB21\fP \s-2Pentecost Ember Friday\s+2
T} T{
\fB22\fP \s-2Pentecost Ember Saturday\s+2
T}
T{
\fB23\fP \s-2Trinity Sunday\s+2
T} T{
\fB24\fP \s-2Monday of the 1st Week of the Time after Pentecost\s+2
T} T{
\fB25\fP \s-2St. Gregory VII\s+2
T} T{
\fB26\fP \s-2St. Philip Neri\s+2
T} T{
\fB27\fP \s-2Corpus Christi\s+2
T} T{
\fB28\fP \s-2St. Augustine of Canterbury\s+2
T} T{
\fB29\fP \s-2St. Mary Magdalene de Pazzi\s+2
T}
T{
\fB30\fP \s-22nd Sunday after Pentecost\s+2
T} T{
\fB31\fP \s-2Queenship of the Blessed Virgin Mary\s+2
T} T{
T} T{
T} T{
T} T{
T} T{
T}
.TE
.SH
June
.TS
allbox;
cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i)
lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i).
Sunday Monday Tuesday Wednesday Thursday Friday Saturday
T{
T} T{
T} T{
\fB1\fP \s-2St. Angela Merici\s+2
T} T{
\fB2\fP \s-2Wednesday of the 2nd Week of the Time after Pentecost\s+2
T} T{
\fB3\fP \s-2Thursday of the 2nd Week of the Time after Pentecost\s+2
T} T{
\fB4\fP \s-2The Sacred Heart of Jesus\s+2
T} T{
\fB5\fP \s-2St. Boniface\s+2
T}
T{
\fB6\fP \s-23rd Sunday after Pentecost\s+2
T} T{
\fB7\fP \s-2Monday of the 3rd Week of the Time after Pentecost\s+2
T} T{
\fB8\fP \s-2Tuesday of the 3rd Week of the Time after Pentecost\s+2
T} T{
\fB9\fP \s-2Wednesday of the 3rd Week of the Time after Pentecost\s+2
T} T{
\fB10\fP \s-2St. Margaret of Scotland\s+2
T} T{
\fB11\fP \s-2St. Barnabas\s+2
T} T{
\fB12\fP \s-2St. John of San Fecundo\s+2
T}
T{
\fB13\fP \s-24th Sunday after Pentecost\s+2
T} T{
\fB14\fP \s-2St. Basil the Great\s+2
T} T{
\fB15\fP \s-2Tuesday of the 4th Week of the Time after Pentecost\s+2
T} T{
\fB16\fP \s-2Wednesday of the 4th Week of the Time after Pentecost\s+2
T} T{
\fB17\fP \s-2St. Gregory Barbarigo\s+2
T} T{
\fB18\fP \s-2St. Ephrem of Syria\s+2
T} T{
\fB19\fP \s-2St. Julia of Falconieri\s+2
T}
T{
\fB20\fP \s-25th Sunday after Pentecost\s+2
T} T{
\fB21\fP \s-2St. Aloysius Gongzaga\s+2
T} T{
\fB22\fP \s-2St. Paulinus of Nola\s+2
T} T{
\fB23\fP \s-2Vigil of the Nativity of St. John the Baptist\s+2
T} T{
\fB24\fP \s-2Nativity of St. John the Baptist\s+2
T} T{
\fB25\fP \s-2St. William\s+2
T} T{
\fB26\fP \s-2Sts. John & Paul\s+2
T}
T{
\fB27\fP \s-26th Sunday after Pentecost\s+2
T} T{
\fB28\fP \s-2Vigil of Sts. Peter & Paul\s+2
T} T{
\fB29\fP \s-2Sts. Peter & Paul\s+2
T} T{
\fB30\fP \s-2In Commemoratione Sancti Pauli Apostoli\s+2
T} T{
T} T{
T} T{
T}
.TE
.SH
July
.TS
allbox;
cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i)
lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i).
Sunday Monday Tuesday Wednesday Thursday Friday Saturday
T{
T} T{
T} T{
T} T{
T} T{
\fB1\fP \s-2The Precious Blood of Our Lord Jesus Christ\s+2
T} T{
\fB2\fP \s-2Visitation of the Blessed Virgin Mary\s+2
T} T{
\fB3\fP \s-2St. Irenaeus\s+2
T}
T{
\fB4\fP \s-27th Sunday after Pentecost\s+2
T} T{
\fB5\fP \s-2St. Anthony Mary Zaccariah\s+2
T} T{
\fB6\fP \s-2Tuesday of the 7th Week of the Time after Pentecost\s+2
T} T{
\fB7\fP \s-2Sts. Cyril & Methodius\s+2
T} T{
\fB8\fP \s-2St. Elizabeth of Portugal\s+2
T} T{
\fB9\fP \s-2Friday of the 7th Week of the Time after Pentecost\s+2
T} T{
\fB10\fP \s-2Seven Holy Brothers and Sts. Rufina & Secunda\s+2
T}
T{
\fB11\fP \s-28th Sunday after Pentecost\s+2
T} T{
\fB12\fP \s-2St. John Gualbert\s+2
T} T{
\fB13\fP \s-2Tuesday of the 8th Week of the Time after Pentecost\s+2
T} T{
\fB14\fP \s-2St. Bonaventure\s+2
T} T{
\fB15\fP \s-2St. Henry the Emperor\s+2
T} T{
\fB16\fP \s-2Friday of the 8th Week of the Time after Pentecost\s+2
T} T{
\fB17\fP \s-2Our Lady's Saturday Office\s+2
T}
T{
\fB18\fP \s-29th Sunday after Pentecost\s+2
T} T{
\fB19\fP \s-2St. Vincent de Paul\s+2
T} T{
\fB20\fP \s-2St. Jerome Emiliani\s+2
T} T{
\fB21\fP \s-2St. Laurence of Brindisi\s+2
T} T{
\fB22\fP \s-2St. Mary Magdalene\s+2
T} T{
\fB23\fP \s-2St. Apollinaris\s+2
T} T{
\fB24\fP \s-2Our Lady's Saturday Office\s+2
T}
T{
\fB25\fP \s-210th Sunday after Pentecost\s+2
T} T{
\fB26\fP \s-2St. Anne, Mother of the Blessed Virgin\s+2
T} T{
\fB27\fP \s-2Tuesday of the 10th Week of the Time after Pentecost\s+2
T} T{
\fB28\fP \s-2Sts. Nazarius & Celsus, St. Victor I & St. Innocent I\s+2
T} T{
\fB29\fP \s-2St. Martha\s+2
T} T{
\fB30\fP \s-2Friday of the 10th Week of the Time after Pentecost\s+2
T} T{
\fB31\fP \s-2St. Ignatius Loyola\s+2
T}
.TE
.SH
August
.TS
allbox;
cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i)
lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i).
Sunday Monday Tuesday Wednesday Thursday Friday Saturday
T{
\fB1\fP \s-211th Sunday after Pentecost\s+2
T} T{
\fB2\fP \s-2St. Alphonsus Liguori\s+2
T} T{
\fB3\fP \s-2Tuesday of the 11th Week of the Time after Pentecost\s+2
T} T{
\fB4\fP \s-2St. Dominic\s+2
T} T{
\fB5\fP \s-2Dedication of the Basilica of St. Mary Major\s+2
T} T{
\fB6\fP \s-2Transfiguration of Our Lord\s+2
T} T{
\fB7\fP \s-2St. Cajetan\s+2
T}
T{
\fB8\fP \s-212th Sunday after Pentecost\s+2
T} T{
\fB9\fP \s-2Vigil of St. Lawrence\s+2
T} T{
\fB10\fP \s-2St. Lawrence\s+2
T} T{
\fB11\fP \s-2Wednesday of the 12th Week of the Time after Pentecost\s+2
T} T{
\fB12\fP \s-2St. Clare\s+2
T} T{
\fB13\fP \s-2Friday of the 12th Week of the Time after Pentecost\s+2
T} T{
\fB14\fP \s-2Vigil of the Assumption\s+2
T}
T{
\fB15\fP \s-2Assumption of the Blessed Virgin Mary\s+2
T} T{
\fB16\fP \s-2St. Joachim, Father of the Blessed Virgin\s+2
T} T{
\fB17\fP \s-2St. Hyacinth\s+2
T} T{
\fB18\fP \s-2Wednesday of the 13th Week of the Time after Pentecost\s+2
T} T{
\fB19\fP \s-2St. John Eudes\s+2
T} T{
\fB20\fP \s-2St. Bernard of Clairvaux\s+2
T} T{
\fB21\fP \s-2St. Jane Frances de Chantal\s+2
T}
T{
\fB22\fP \s-214th Sunday after Pentecost\s+2
T} T{
\fB23\fP \s-2St. Philip Benizi\s+2
T} T{
\fB24\fP \s-2St. Bartholomew\s+2
T} T{
\fB25\fP \s-2St. Louis IX\s+2
T} T{
\fB26\fP \s-2Thursday of the 14th Week of the Time after Pentecost\s+2
T} T{
\fB27\fP \s-2St. Joseph Calasance\s+2
T} T{
\fB28\fP \s-2St. Augustine\s+2
T}
T{
\fB29\fP \s-215th Sunday after Pentecost\s+2
T} T{
\fB30\fP \s-2St. Rose of Lima\s+2
T} T{
\fB31\fP \s-2St. Raymond Nonnatus\s+2
T} T{
T} T{
T} T{
T} T{
T}
.TE
.SH
September
.TS
allbox;
cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i)
lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i).
Sunday Monday Tuesday Wednesday Thursday Friday Saturday
T{
T} T{
T} T{
T} T{
\fB1\fP \s-2Wednesday of the 15th Week of the Time after Pentecost\s+2
T} T{
\fB2\fP \s-2St. Stephen of Hungary\s+2
T} T{
\fB3\fP \s-2St. Pius X\s+2
T} T{
\fB4\fP \s-2Our Lady's Saturday Office\s+2
T}
T{
\fB5\fP \s-216th Sunday after Pentecost\s+2
T} T{
\fB6\fP \s-2Monday of the 16th Week of the Time after Pentecost\s+2
T} T{
\fB7\fP \s-2Tuesday of the 16th Week of the Time after Pentecost\s+2
T} T{
\fB8\fP \s-2Nativity of the Blessed Virgin Mary\s+2
T} T{
\fB9\fP \s-2Thursday of the 16th Week of the Time after Pentecost\s+2
T} T{
\fB10\fP \s-2St. Nicholas of Tolentino\s+2
T} T{
\fB11\fP \s-2Our Lady's Saturday Office\s+2
T}
T{
\fB12\fP \s-217th Sunday after Pentecost\s+2
T} T{
\fB13\fP \s-2Monday of the 17th Week of the Time after Pentecost\s+2
T} T{
\fB14\fP \s-2Exaltation of the Holy Cross\s+2
T} T{
\fB15\fP \s-2Seven Sorrows of the Blessed Virgin Mary\s+2
T} T{
\fB16\fP \s-2Sts. Cornelius & Cyprian\s+2
T} T{
\fB17\fP \s-2Friday of the 17th Week of the Time after Pentecost\s+2
T} T{
\fB18\fP \s-2St. Joseph of Cupertino\s+2
T}
T{
\fB19\fP \s-218th Sunday after Pentecost\s+2
T} T{
\fB20\fP \s-2Monday of the 18th Week of the Time after Pentecost\s+2
T} T{
\fB21\fP \s-2St. Matthew\s+2
T} T{
\fB22\fP \s-2September Ember Wednesday\s+2
T} T{
\fB23\fP \s-2St. Linus\s+2
T} T{
\fB24\fP \s-2September Ember Friday\s+2
T} T{
\fB25\fP \s-2September Ember Saturday\s+2
T}
T{
\fB26\fP \s-219th Sunday after Pentecost\s+2
T} T{
\fB27\fP \s-2Sts. Cosmas & Damian\s+2
T} T{
\fB28\fP \s-2St. Wenceslaus\s+2
T} T{
\fB29\fP \s-2Dedication of St. Michael the Archangel\s+2
T} T{
\fB30\fP \s-2St. Jerome\s+2
T} T{
T} T{
T}
.TE
.SH
October
.TS
allbox;
cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i)
lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i).
Sunday Monday Tuesday Wednesday Thursday Friday Saturday
T{
T} T{
T} T{
T} T{
T} T{
T} T{
\fB1\fP \s-2Friday of the 19th Week of the Time after Pentecost\s+2
T} T{
\fB2\fP \s-2Holy Guardian Angels\s+2
T}
T{
\fB3\fP \s-220th Sunday after Pentecost\s+2
T} T{
\fB4\fP \s-2St. Francis of Assisi\s+2
T} T{
\fB5\fP \s-2Tuesday of the 20th Week of the Time after Pentecost\s+2
T} T{
\fB6\fP \s-2St. Bruno\s+2
T} T{
\fB7\fP \s-2Our Lady of the Rosary\s+2
T} T{
\fB8\fP \s-2St. Bridget of Sweden\s+2
T} T{
\fB9\fP \s-2St. John Leonardi\s+2
T}
T{
\fB10\fP \s-221st Sunday after Pentecost\s+2
T} T{
\fB11\fP \s-2Maternity of the Blessed Virgin Mary\s+2
T} T{
\fB12\fP \s-2Tuesday of the 21st Week of the Time after Pentecost\s+2
T} T{
\fB13\fP \s-2St. Edward\s+2
T} T{
\fB14\fP \s-2St. Callistus I\s+2
T} T{
\fB15\fP \s-2St. Teresa of Avila\s+2
T} T{
\fB16\fP \s-2St. Hedwig\s+2
T}
T{
\fB17\fP \s-222nd Sunday after Pentecost\s+2
T} T{
\fB18\fP \s-2St. Luke the Evangelist\s+2
T} T{
\fB19\fP \s-2St. Peter of Alcantara\s+2
T} T{
\fB20\fP \s-2St. John Cantius\s+2
T} T{
\fB21\fP \s-2Thursday of the 22nd Week of the Time after Pentecost\s+2
T} T{
\fB22\fP \s-2Friday of the 22nd Week of the Time after Pentecost\s+2
T} T{
\fB23\fP \s-2St. Anthony Mary Claret\s+2
T}
T{
\fB24\fP \s-223rd Sunday after Pentecost\s+2
T} T{
\fB25\fP \s-2Monday of the 23rd Week of the Time after Pentecost\s+2
T} T{
\fB26\fP \s-2Tuesday of the 23rd Week of the Time after Pentecost\s+2
T} T{
\fB27\fP \s-2Wednesday of the 23rd Week of the Time after Pentecost\s+2
T} T{
\fB28\fP \s-2Sts. Simon & Jude\s+2
T} T{
\fB29\fP \s-2Friday of the 23rd Week of the Time after Pentecost\s+2
T} T{
\fB30\fP \s-2Our Lady's Saturday Office\s+2
T}
T{
\fB31\fP \s-2Christ the King\s+2
T} T{
T} T{
T} T{
T} T{
T} T{
T} T{
T}
.TE
.SH
November
.TS
allbox;
cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i)
lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i).
Sunday Monday Tuesday Wednesday Thursday Friday Saturday
T{
T} T{
\fB1\fP \s-2All Saints\s+2
T} T{
\fB2\fP \s-2Commemoration of All Souls\s+2
T} T{
\fB3\fP \s-2Wednesday of the 24th Week of the Time after Pentecost\s+2
T} T{
\fB4\fP \s-2St. Charles Borromeo\s+2
T} T{
\fB5\fP \s-2Friday of the 24th Week of the Time after Pentecost\s+2
T} T{
\fB6\fP \s-2Our Lady's Saturday Office\s+2
T}
T{
\fB7\fP \s-25th Sunday after Epiphany\s+2
T} T{
\fB8\fP \s-2Monday of the 25th Week of the Time after Pentecost\s+2
T} T{
\fB9\fP \s-2Dedication of the Archbasilica of Our Holy Savior\s+2
T} T{
\fB10\fP \s-2St. Andrew Avellino\s+2
T} T{
\fB11\fP \s-2St. Martin of Tours\s+2
T} T{
\fB12\fP \s-2St. Martin I\s+2
T} T{
\fB13\fP \s-2St. Didacus\s+2
T}
T{
\fB14\fP \s-26th Sunday after Epiphany\s+2
T} T{
\fB15\fP \s-2St. Albert the Great\s+2
T} T{
\fB16\fP \s-2St. Gertrude the Great\s+2
T} T{
\fB17\fP \s-2St. Gregory the Wonderworker\s+2
T} T{
\fB18\fP \s-2Dedication of the Basilicas of Sts. Peter & Paul\s+2
T} T{
\fB19\fP \s-2St. Elizabeth of Hungary\s+2
T} T{
\fB20\fP \s-2St. Felix of Valois\s+2
T}
T{
\fB21\fP \s-224th and Last Sunday after Pentecost\s+2
T} T{
\fB22\fP \s-2St. Cecilia\s+2
T} T{
\fB23\fP \s-2St. Clement I\s+2
T} T{
\fB24\fP \s-2St. John of the Cross\s+2
T} T{
\fB25\fP \s-2St. Catherine of Alexandria\s+2
T} T{
\fB26\fP \s-2St. Sylvester\s+2
T} T{
\fB27\fP \s-2Our Lady's Saturday Office\s+2
T}
T{
\fB28\fP \s-21st Sunday of Advent\s+2
T} T{
\fB29\fP \s-2Monday of the 1st Week of Advent\s+2
T} T{
\fB30\fP \s-2St. Andrew\s+2
T} T{
T} T{
T} T{
T} T{
T}
.TE
.SH
December
.TS
allbox;
cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i) cw(1.3i)
lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i) lw(1.3i).
Sunday Monday Tuesday Wednesday Thursday Friday Saturday
T{
T} T{
T} T{
T} T{
\fB1\fP \s-2Wednesday of the 1st Week of Advent\s+2
T} T{
\fB2\fP \s-2St. Vivian\s+2
T} T{
\fB3\fP \s-2St. Francis Xavier\s+2
T} T{
\fB4\fP \s-2St. Peter Chrysologus\s+2
T}
T{
\fB5\fP \s-22nd Sunday of Advent\s+2
T} T{
\fB6\fP \s-2St. Nicholas\s+2
T} T{
\fB7\fP \s-2St. Ambrose\s+2
T} T{
\fB8\fP \s-2Immaculate Conception of the Blessed Virgin Mary\s+2
T} T{
\fB9\fP \s-2Thursday of the 2nd Week of Advent\s+2
T} T{
\fB10\fP \s-2Friday of the 2nd Week of Advent\s+2
T} T{
\fB11\fP \s-2St. Damasus I\s+2
T}
T{
\fB12\fP \s-23rd Sunday of Advent\s+2
T} T{
\fB13\fP \s-2St. Lucy\s+2
T} T{
\fB14\fP \s-2Tuesday of the 3rd Week of Advent\s+2
T} T{
\fB15\fP \s-2Advent Ember Wednesday\s+2
T} T{
\fB16\fP \s-2St. Eusebius\s+2
T} T{
\fB17\fP \s-2Advent Ember Friday\s+2
T} T{
\fB18\fP \s-2Advent Ember Saturday\s+2
T}
T{
\fB19\fP \s-24th Sunday of Advent\s+2
T} T{
\fB20\fP \s-2Monday of the 4th Week of Advent\s+2
T} T{
\fB21\fP \s-2St. Thomas\s+2
T} T{
\fB22\fP \s-2Wednesday of the 4th Week of Advent\s+2
T} T{
\fB23\fP \s-2Thursday of the 4th Week of Advent\s+2
T} T{
\fB24\fP \s-2Vigil of the Nativity (Christmas Eve)\s+2
T} T{
\fB25\fP \s-2The Nativity of Our Lord (Christmas)\s+2
T}
T{
\fB26\fP \s-2Sunday within the Octave of the Nativity\s+2
T} T{
\fB27\fP \s-2St. John the Evangelist\s+2
T} T{
\fB28\fP \s-2Holy Innocents\s+2
T} T{
\fB29\fP \s-25th Day within the Octave of the Nativity\s+2
T} T{
\fB30\fP \s-26th Day within the Octave of the Nativity\s+2
T} T{
\fB31\fP \s-27th Day within the Octave of the Nativity\s+2
T} T{
T}
.TE
|