diff options
| -rw-r--r-- | lib/render/view.ml | 9 | ||||
| -rw-r--r-- | templates/ef/ordo.adoc | 14 | ||||
| -rw-r--r-- | templates/ef/ordo.html | 15 | ||||
| -rw-r--r-- | templates/ef/ordo.md | 12 | ||||
| -rw-r--r-- | templates/ef/ordo.ms | 14 | ||||
| -rw-r--r-- | templates/ef/ordo.tex | 80 | ||||
| -rw-r--r-- | templates/ef/ordo.txt | 7 | ||||
| -rw-r--r-- | templates/ef/ordo.typ | 81 | ||||
| -rw-r--r-- | test/golden/ordo-2027.adoc | 196 | ||||
| -rw-r--r-- | test/golden/ordo-2027.html | 73 | ||||
| -rw-r--r-- | test/golden/ordo-2027.md | 194 | ||||
| -rw-r--r-- | test/golden/ordo-2027.ms | 247 | ||||
| -rw-r--r-- | test/golden/ordo-2027.tex | 3882 | ||||
| -rw-r--r-- | test/golden/ordo-2027.txt | 189 | ||||
| -rw-r--r-- | test/golden/ordo-2027.typ | 7422 | ||||
| -rw-r--r-- | test/test_view.ml | 19 |
16 files changed, 4716 insertions, 7738 deletions
diff --git a/lib/render/view.ml b/lib/render/view.ml index 7bd5416..bedf998 100644 --- a/lib/render/view.ml +++ b/lib/render/view.ml @@ -145,6 +145,15 @@ let weeks_of_month ~first_dow ~month_num ~month_name day_values = [ ("num", str (string_of_int (i + 1))); ("month_num", str month_num); ("month_name", str month_name); + (* True on the month's own first week -- Defect 2 (the continuous + ordo booklet): with the per-week page break gone, a template + needs SOME signal to print a stronger, standalone month banner + at the point a new month begins, rather than repeating the + (unremarkable) "Month . Week N" header run-on run-on. The same + "cheap flag beats invented template logic" call [last] above + already made -- there is still no {{../}} parent-path syntax + to test "is this month's first week" any other way. *) + ("first", bool (i = 0)); ("days", T.List (set_last w)) ]) (chunk [] cells) diff --git a/templates/ef/ordo.adoc b/templates/ef/ordo.adoc index 3c7e69b..0b5785d 100644 --- a/templates/ef/ordo.adoc +++ b/templates/ef/ordo.adoc @@ -12,17 +12,27 @@ // (Ordo, Epistle, Gospel, Commemoration) comes from the view's term // vocabulary rather than being written into this file, so a translated // booklet needs no template edit. +// +// Defect 2: AsciiDoc has no page concept either -- mainly needed the same +// header treatment as the paginated flavours. A === per week under each +// month's ==, so :toc: now nests month/week the way ordo.tex's own +// hand-built TOC and ordo.typ's outline already do. Walks +// months>weeks>days (the week's own padded, in-month-guarded day list) in +// place of the old months>days flat loop over the month's own flat one. = {{term.ordo}} {{year}} · {{rite_name}} :toc: {{#months}} == {{name}} -{{#days}} +{{#weeks}} +=== {{term.week}} {{num}} + +{{#days}}{{#in_month}} *{{dom}}* {{name}} + {{rank}} · {{colour}} + {{#first}}{{term.epistle}} {{first}} {{/first}}{{#gospel}}{{term.gospel}} {{gospel}}{{/gospel}} {{#comms}} + {{term.commemoration}} {{name}}{{/comms}} -{{/days}}{{/months}} +{{/in_month}}{{/days}}{{/weeks}}{{/months}} diff --git a/templates/ef/ordo.html b/templates/ef/ordo.html index c80a2a4..4936974 100644 --- a/templates/ef/ordo.html +++ b/templates/ef/ordo.html @@ -7,11 +7,21 @@ (Ordo, Epistle, Gospel, Commemoration) comes from the view's term vocabulary rather than being written into this file, so a translated booklet needs no template edit. --> +<!-- Defect 2: HTML has no concept of a forced page break to begin with, + so this flavour was never one-week-per-page -- it mainly needed the + SAME header treatment the paginated flavours gained, for a reader + switching between them to find the same structure. Walks + months>weeks>days now (was months>days flat): an h2 per month + (unchanged) and a new h3 per week, using the week's own padded, + in-month-flagged day list rather than the month's flat, unpadded + one -- guarded accordingly below, the same guard every paginated + flavour's grid already needs for that field. --> <!doctype html> <html lang="la"><head><meta charset="utf-8"> <title>{{term.ordo}} {{year}}</title> <style> body{font-family:serif;max-width:40em;margin:2em auto;line-height:1.4} + h3{font-size:1em;border-top:1px solid #ccc;padding-top:.3em;margin-top:1.2em} .day{margin:.6em 0;padding-left:2.5em;text-indent:-2.5em} .dom{display:inline-block;width:2em;font-weight:bold} .meta{font-size:.85em;color:#555} @@ -22,10 +32,11 @@ </style></head><body> <h1>{{term.ordo}} {{year}} · {{rite_name}}</h1> {{#months}}<h2>{{name}}</h2> -{{#days}}<div class="day {{colour}}"> +{{#weeks}}<h3>{{term.week}} {{num}}</h3> +{{#days}}{{#in_month}}<div class="day {{colour}}"> <span class="dom">{{dom}}</span>{{name}} <div class="meta">{{rank}} · {{colour}}{{#first}} · {{term.epistle}} {{first}}{{/first}}{{#gospel}} · {{term.gospel}} {{gospel}}{{/gospel}}</div> {{#comms}}<div class="meta">{{term.commemoration}} {{name}}</div>{{/comms}} </div> -{{/days}}{{/months}} +{{/in_month}}{{/days}}{{/weeks}}{{/months}} </body></html> diff --git a/templates/ef/ordo.md b/templates/ef/ordo.md index fde5bb2..fd8094f 100644 --- a/templates/ef/ordo.md +++ b/templates/ef/ordo.md @@ -11,16 +11,24 @@ (Ordo, Epistle, Gospel, Commemoration) comes from the view's term vocabulary rather than being written into this file, so a translated booklet needs no template edit. --> +<!-- Defect 2: Markdown has no page concept either, so this mainly needed + the same header treatment as the paginated flavours, for structural + consistency -- a ### per week under each month's ##, walking + months>weeks>days (the week's own padded, in-month-guarded day + list, not the flat unpadded one the old months>days loop used). --> # {{term.ordo}} {{year}} · {{rite_name}} {{#months}} ## {{name}} -{{#days}} +{{#weeks}} +### {{term.week}} {{num}} + +{{#days}}{{#in_month}} **{{dom}}** {{name}} `{{rank}}` · {{colour}}{{#first}} · {{term.epistle}} {{first}}{{/first}}{{#gospel}} · {{term.gospel}} {{gospel}}{{/gospel}} {{#comms}} - {{term.commemoration}} {{name}} {{/comms}} -{{/days}}{{/months}} +{{/in_month}}{{/days}}{{/weeks}}{{/months}} diff --git a/templates/ef/ordo.ms b/templates/ef/ordo.ms index d578455..a5d7100 100644 --- a/templates/ef/ordo.ms +++ b/templates/ef/ordo.ms @@ -9,13 +9,22 @@ .\" (Ordo, Epistle, Gospel, Commemoration) comes from the view's term .\" vocabulary rather than being written into this file, so a translated .\" booklet needs no template edit. +.\" +.\" Defect 2: groff -ms paginates its own way (no per-week \" clearpage \" +.\" this template ever forced), so it mainly needed the same header +.\" treatment as the paginated flavours, for structural consistency -- a +.\" bold week run-in under each month's own .SH, walking months>weeks>days +.\" (the week's own padded, in-month-guarded day list) in place of the +.\" old months>days flat loop over the month's own flat one. .TL {{term.ordo}} {{year}} \(bu {{rite_name}} {{#months}} .SH {{name}} +{{#weeks}} .LP -{{#days}} +\fB{{term.week}} {{num}}\fR +{{#days}}{{#in_month}} .IP "{{dom}}" 4 {{name}} .br @@ -26,5 +35,6 @@ \s-2{{term.gospel}} {{gospel}}\s+2 {{/gospel}}{{#comms}}.br \s-2{{term.commemoration}} {{name}}\s+2 -{{/comms}}{{/days}} +{{/comms}}{{/in_month}}{{/days}} +{{/weeks}} {{/months}} diff --git a/templates/ef/ordo.tex b/templates/ef/ordo.tex index 4b5bed9..a7fcbb3 100644 --- a/templates/ef/ordo.tex +++ b/templates/ef/ordo.tex @@ -2,11 +2,61 @@ % Build: colitur table --year 2027 --template ordo.tex > ordo.tex && pdflatex ordo.tex && % pdflatex ordo.tex (twice, so \pageref in the table of contents settles) % -% A5, one week per page, each day in a framed box with a colour swatch. Every -% fixed string (headings, the Epistle/Gospel/Commemoration/Week labels) -% comes from the view's term vocabulary rather than being written into this -% file, so a translated booklet needs no template edit -- only a different -% --lang. +% A5, CONTINUOUS: days flow one after another with no forced page break per +% week (Defect 2 -- the original one-week-per-page layout filled roughly +% the top third of every page and cost 65 pages for a year that needed far +% fewer; that requirement is reversed here on purpose, not merely relaxed). +% Structure stays scannable through two header weights instead: every +% week still opens with its existing small header line ({{month_name}} . +% {{term.week}} N), and the month's own FIRST week additionally gets a +% large, ruled banner above that line ({{#first}}...{{/first}}, a real +% view field -- lib/render/view.ml -- not template-side arithmetic, since +% this engine has no way to test "is this the first item" any other way). +% \needspace (a genuine, tiny dependency, not one of the deps this project +% freezes at the OCaml level -- LaTeX packages are a template author's own +% concern) keeps a header from being stranded alone at a page's bottom +% with its first day box pushed to the next one: 29mm covers the month +% banner's own rule+title (~11.5mm) plus the week header below it +% (~5.5mm) plus room for at least one day box (~10mm); 16mm covers just +% the week header plus one day box. Both re-verified against the actual +% typeset output, not derived from theory alone (the task report has the +% before/after page counts and a scan proving no header is ever left +% alone at a page's foot with nothing under it). +% +% \label fires AFTER both \needspace calls below, not before: a \label +% placed before a \needspace that goes on to force a break captures the +% OLD page number (\thepage at the point \label is processed, not where +% its content actually lands) -- a step-stale \pageref found live in an +% early draft's own TOC (week 3 read "page 3" while its own content +% demonstrably started on page 4). Moving the label to fire only once the +% page a week ACTUALLY starts on is already decided fixes it at the +% source, cheaper than a third pdflatex pass, which would not have fixed +% it either (the wrong page number was already committed to the .aux by +% the second pass). +% +% Each day in a framed box with a colour swatch, tightened from an +% earlier draft (top/bottom padding 0.4mm, before skip 0.5mm, \scriptsize +% meta text, rank/colour and the citations on separate lines) for this +% same continuous flow: a full 7-day week already occupies most of an A5 +% page even at reduced size (measured: 55-65% of the text height for a +% typical week, more with commemorations), so simply dropping the forced +% per-week \clearpage only let the year's many PARTIAL boundary weeks +% double up, not full ones -- a real but small saving on its own. Three +% changes together fit a genuinely useful second (often third, on a short +% week) week onto the same page: \fontsize explicitly (not \scriptsize, +% whose 7pt/8.4pt leading is looser than a dense booklet needs), the +% feast name still a clearly-bolder 9pt, and rank/colour folded onto the +% SAME line as the citations rather than a line of its own -- an A5 box +% is far wider than it is tall (roughly 120mm of usable width here), so +% "I classis . albus Epistola ... Evangelium ..." fits with room to +% spare even on Holy Week's own longest citations (measured against the +% rendered output, not assumed; see the task report for the page count +% this bought). +% +% Every fixed string (headings, the Epistle/Gospel/Commemoration/Week +% labels) comes from the view's term vocabulary rather than being written +% into this file, so a translated booklet needs no template edit -- only +% a different --lang. % % The observed day's own display name is a PLAIN resolved string % (View.of_days, Task 5), never a lang-keyed object -- there is no @@ -49,6 +99,7 @@ \usepackage{tcolorbox} \usepackage{fancyhdr} \usepackage[hidelinks]{hyperref} +\usepackage{needspace} \definecolor{licolwhite}{HTML}{FFFFFF} \definecolor{licolred}{HTML}{C1272D} \definecolor{licolgreen}{HTML}{2E7D32} @@ -84,20 +135,25 @@ \clearpage {{#months}} {{#weeks}} +{{#first}} +\needspace{29mm} +\vspace{2mm}\noindent\rule{\linewidth}{1pt}\par\vspace{0.8mm} +{\LARGE\bfseries {{month_name}} {{year}} }\par\vspace{1mm} +{{/first}} +\needspace{16mm} \label{w{{month_num}}-{{num}}} {\bfseries\large {{month_name}} }\hfill{\small {{term.week}} {{num}}}\par\vspace{0.5mm} {{#days}} {{#in_month}} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries {{dom}} } \;\; {\scriptsize {{weekday}} } \hfill \swatch{licol{{colour}}}\par -{\bfseries {{name}} }\par -{\scriptsize {{rank_name}} \textperiodcentered\ {{colour_name}} }\par -{{#first}}{\scriptsize {{term.epistle}}\ {{first}} }\quad{{/first}}{{#gospel}}{\scriptsize {{term.gospel}}\ {{gospel}} }{{/gospel}} -{{#comms}}\par{\scriptsize {{term.commemoration}}\ {{name}} }{{/comms}} +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries {{dom}} } \;{\fontsize{6.5}{7.4}\selectfont {{weekday}} }\hfill\swatch{licol{{colour}}}\par +{\fontsize{9}{10.2}\selectfont\bfseries {{name}} }\par +{\fontsize{6.5}{7.4}\selectfont {{rank_name}} \textperiodcentered\ {{colour_name}} {{#first}}\quad {{term.epistle}}\ {{first}} {{/first}}{{#gospel}}\quad {{term.gospel}}\ {{gospel}} {{/gospel}}} +{{#comms}}\par{\fontsize{6.5}{7.4}\selectfont {{term.commemoration}}\ {{name}} }{{/comms}} \end{tcolorbox} {{/in_month}} {{/days}} -\clearpage +\vspace{1mm} {{/weeks}} {{/months}} \end{document} diff --git a/templates/ef/ordo.txt b/templates/ef/ordo.txt index 3301652..0ac0366 100644 --- a/templates/ef/ordo.txt +++ b/templates/ef/ordo.txt @@ -1,10 +1,13 @@ {{#months}} {{name}} {{year}} -{{#days}} +{{#weeks}} +== {{term.week}} {{num}} == +{{#days}}{{#in_month}} {{dom}} {{name}} {{rank}} · {{colour}} {{#first}} {{term.epistle}} {{first}} {{/first}}{{#gospel}} {{term.gospel}} {{gospel}} {{/gospel}}{{#comms}} {{term.commemoration}} {{name}} -{{/comms}}{{/days}} +{{/comms}}{{/in_month}}{{/days}} +{{/weeks}} {{/months}} diff --git a/templates/ef/ordo.typ b/templates/ef/ordo.typ index 162a485..85b609e 100644 --- a/templates/ef/ordo.typ +++ b/templates/ef/ordo.typ @@ -8,12 +8,16 @@ // a genuine advantage of this flavour over ordo.tex, not merely a different // syntax for the same thing. // -// A5, one week per page, each day in a framed box with a colour swatch. -// Every fixed string (headings, the Epistle/Gospel/Commemoration/Week -// labels) comes from the view's term vocabulary rather than being written -// into this file, so a translated booklet needs no template edit -- only a -// different --lang. Same discipline as ordo.tex; see that file's own header -// for the full reasoning, repeated only where Typst changes it below. +// A5, CONTINUOUS (Defect 2): no forced page break per week any more -- +// see ordo.tex's own header for the measured "why" (a full 7-day week +// already fills most of an A5 page even tightened, so the real saving +// comes from the year's many SHORT boundary weeks no longer wasting a +// whole page each). Every fixed string (headings, the Epistle/Gospel/ +// Commemoration/Week labels) comes from the view's term vocabulary rather +// than being written into this file, so a translated booklet needs no +// template edit -- only a different --lang. Same discipline as ordo.tex; +// see that file's own header for the full reasoning, repeated only where +// Typst changes it below. // // The observed day's own display name is a PLAIN resolved string // (View.of_days), never a lang-keyed object, exactly as in every other @@ -42,12 +46,29 @@ // per month with its weeks dotted-and-paginated underneath, because it // walks the months-then-weeks nesting directly in its own hand-built TOC // loop. Typst's outline instead builds its table of contents automatically -// from real document headings, and there is no "is this the month's first -// week" flag in the view model for a template to test -- inventing one -// would be new engine state for a cosmetic grouping, not a real gap. Each -// week page therefore carries ONE flat heading, "Month . Week N", which is -// both what a reader sees at the top of that page and, automatically, its -// own single-line entry in the table of contents below. +// from real document headings, so this stays a flat list of "Month . Week +// N" headings rather than being restructured into two heading levels -- +// changing outline depth/structure is a bigger, riskier change than this +// defect calls for. Defect 2 DID add a "is this the month's first week" +// flag to the view model (lib/render/view.ml's own [first], the same +// "cheap flag beats invented template logic" call [last] already made +// elsewhere) -- used below for a separate, non-heading month BANNER +// printed just above that first week's own heading, not by restructuring +// the heading/outline itself. The banner's own sticky:true (separate from +// the heading show-rule's below) is needed for the identical reason: an +// early draft without it put "Aprilis 2027" alone at the very bottom of +// a page with the entire month below it on the next one -- not caught by +// a check for an orphaned HEADING (a banner is not one), only found by +// looking at the rendered page. Chaining two sticky blocks keeps +// banner+heading+first day box moving together. +// +// Each day box is tightened from an earlier draft (0.6mm inset, 0.42em +// leading, 7pt meta text on its own separate rank/colour line) for this +// same continuous flow -- see ordo.tex's own header for the measured +// reasoning, identical here: a full week already fills most of a page, +// so folding rank/colour onto the SAME line as the citations (this box +// is far wider than it is tall) is what buys back a second week's worth +// of room, not the font/inset trim alone. // // Colour swatch: the six colour names this rite emits (white, red, green, // violet, rose, black -- Colour.to_string's own closed vocabulary) are used @@ -65,9 +86,15 @@ ) #set text(size: 9pt) #set par(justify: false) +// sticky: true keeps a heading from being stranded alone at a page's +// bottom with its own week's first day box pushed to the next page -- +// Typst's own built-in answer to what ordo.tex needs \needspace (an +// external package) for. Verified live: a heading is provably never the +// LAST thing on a page anywhere in the rendered output (the task report +// has the scan). #show heading: it => { set text(size: 12pt, weight: "bold") - block(above: 3mm, below: 2mm)[#it.body] + block(above: 3mm, below: 2mm, sticky: true)[#it.body] } #let licol = ( @@ -92,30 +119,24 @@ {{#months}} {{#weeks}} +{{#first}} +#block(above: 2mm, below: 0mm, sticky: true)[ + #line(length: 100%, stroke: 0.6pt + luma(120)) + #text(size: 15pt, weight: "bold")[{{month_name}} {{year}}] +] +{{/first}} = {{month_name}} #sym.dot.c {{term.week}} {{num}} {{#days}} {{#in_month}} -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[{{dom}}] #h(2mm) #text(size: 8pt)[{{weekday}}] #h(1fr) #swatch("{{colour}}") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[{{dom}}] #h(2mm) #text(size: 7pt)[{{weekday}}] #h(1fr) #swatch("{{colour}}") \ #text(weight: "bold")[{{name}}] \ - #text(size: 7pt)[{{rank_name}} #sym.dot.c {{colour_name}}] \ - #text(size: 7pt)[{{#first}}{{term.epistle}} {{first}}{{/first}}{{#gospel}}{{#first}} #h(2mm) {{/first}}{{term.gospel}} {{gospel}}{{/gospel}}]{{#comms}} \ - #text(size: 7pt)[{{term.commemoration}} {{name}}]{{/comms}} + #text(size: 6.5pt)[{{rank_name}} #sym.dot.c {{colour_name}}{{#first}} #h(2mm) {{term.epistle}} {{first}}{{/first}}{{#gospel}} #h(2mm) {{term.gospel}} {{gospel}}{{/gospel}}]{{#comms}} \ + #text(size: 6.5pt)[{{term.commemoration}} {{name}}]{{/comms}} ] {{/in_month}} {{/days}} -#pagebreak(weak: true) {{/weeks}} {{/months}} diff --git a/test/golden/ordo-2027.adoc b/test/golden/ordo-2027.adoc index 7eae94c..45eb306 100644 --- a/test/golden/ordo-2027.adoc +++ b/test/golden/ordo-2027.adoc @@ -12,6 +12,13 @@ // (Ordo, Epistle, Gospel, Commemoration) comes from the view's term // vocabulary rather than being written into this file, so a translated // booklet needs no template edit. +// +// Defect 2: AsciiDoc has no page concept either -- mainly needed the same +// header treatment as the paginated flavours. A === per week under each +// month's ==, so :toc: now nests month/week the way ordo.tex's own +// hand-built TOC and ordo.typ's outline already do. Walks +// months>weeks>days (the week's own padded, in-month-guarded day list) in +// place of the old months>days flat loop over the month's own flat one. = Ordo 2027 · Roman Missal, 1962 typical edition :toc: @@ -19,6 +26,9 @@ == January +=== Week 1 + + *1* The Octave Day of the Nativity + class-1 · white + Epistle Titus 2:11-15 Gospel Luke 2:21 @@ -31,6 +41,9 @@ Epistle Titus 3:4-7 Gospel Luke 2:15-20 +=== Week 2 + + *3* The Holy Name of Jesus + class-2 · white + Epistle Acts 4:8-12 Gospel Luke 2:21 @@ -74,6 +87,9 @@ Epistle Titus 3:4-7 Gospel Luke 2:15-20 +=== Week 3 + + *10* The Holy Family + class-2 · white + Epistle Col 3:12-17 Gospel Luke 2:42-52 @@ -119,6 +135,9 @@ Epistle 1 Pet 5:1-4; 5:10-11. Gospel Matt 16:13-19 +=== Week 4 + + *17* 2nd Sunday after Epiphany + class-2 · green + Epistle Rom 12:6-16 Gospel John 2:1-11 @@ -165,6 +184,9 @@ Epistle Sir 31:8-11 Gospel Luke 12:35-40 Commemoration St. Emerentiana +=== Week 5 + + *24* Septuagesima Sunday + class-2 · violet + Epistle 1 Cor. 9:24-27; 10:1-5 Gospel Matt 20:1-16 @@ -209,6 +231,9 @@ Epistle Sir 51:1-8; 51:12 Gospel Matt 25:1-13. +=== Week 6 + + *31* Sexagesima Sunday + class-2 · violet + Epistle 2 Cor. 11:19-33; 12:1-9 Gospel Luke 8:4-15 @@ -218,6 +243,9 @@ Epistle 2 Cor. 11:19-33; 12:1-9 Gospel Luke 8:4-15 == February +=== Week 1 + + *1* St. Ignatius of Antioch + class-3 · red + Epistle Rom 8:35-39 Gospel John 12:24-26 @@ -256,6 +284,9 @@ Epistle Sir 44:16-27; 45:3-20 Gospel Luke 10:1-9 Commemoration St. Dorothy +=== Week 2 + + *7* Quinquagesima Sunday + class-2 · violet + Epistle 1 Cor. 13:1-13 Gospel Luke 18:31-43 @@ -301,6 +332,9 @@ Epistle Isa 58:9-14 Gospel Mark 6:47-56 +=== Week 3 + + *14* 1st Sunday of Lent + class-1 · violet + Epistle 2 Cor. 6:1-10 Gospel Matt 4:1-11 @@ -345,6 +379,9 @@ Epistle 1 Thess. 5:14-23 Gospel Matt 17:1-9 +=== Week 4 + + *21* 2nd Sunday of Lent + class-1 · violet + Epistle 1 Thess. 4:1-7 Gospel Matt 17:1-9 @@ -392,6 +429,9 @@ Epistle Gen 27:6-40 Gospel Luke 15:11-32 Commemoration St. Gabriel of Our Lady of Sorrows +=== Week 5 + + *28* 3rd Sunday of Lent + class-1 · violet + Epistle Eph 5:1-9 Gospel Luke 11:14-28 @@ -401,6 +441,9 @@ Epistle Eph 5:1-9 Gospel Luke 11:14-28 == March +=== Week 1 + + *1* Monday of the 3rd Week of Lent + class-3 · violet + Epistle 4 Kings 5:1-15 Gospel Luke 4:23-30 @@ -440,6 +483,9 @@ Epistle Dan 13:1-9, 15-17, 19-30, 33-62. Gospel John 8:1-11 Commemoration Sts. Felicitas & Perpetua +=== Week 2 + + *7* 4th Sunday of Lent + class-1 · rose + Epistle Gal 4:22-31 Gospel John 6:1-15 @@ -486,6 +532,9 @@ Epistle Isa 49:8-15 Gospel John 8:12-20 +=== Week 3 + + *14* Passion Sunday + class-1 · violet + Epistle Heb 9:11-15. Gospel John 8:46-59. @@ -531,6 +580,9 @@ Epistle Jer 18:18-23 Gospel John 12:10-36 +=== Week 4 + + *21* Palm Sunday + class-1 · violet + Epistle Phil 2:5-11 Gospel Matt. 26:36-75; 27:1-60. @@ -573,6 +625,9 @@ Epistle Col 3:1-4 Gospel Matt 28:1-7 +=== Week 5 + + *28* Easter Sunday + class-1 · white + Epistle 1 Cor 5:7-8 Gospel Mark 16:1-7 @@ -600,6 +655,9 @@ Epistle Acts 3:13-15; 3:17-19 Gospel John 21:1-14 == April +=== Week 1 + + *1* Thursday of Easter Week + class-1 · white + Epistle Acts 8:26-40 Gospel John 20:11-18 @@ -618,6 +676,9 @@ Epistle 1 Pet 2:1-10 Gospel John 20:1-9 +=== Week 2 + + *4* Low Sunday (Sunday in Easter Octave) + class-1 · white + Epistle 1 John 5:4-10 Gospel John 20:19-31 @@ -660,6 +721,9 @@ Epistle Ecclus 24:14-16 Gospel John 19:25-27 +=== Week 3 + + *11* 2nd Sunday after Easter + class-2 · white + Epistle 1 Pet 2:21-25 Gospel John 10:11-16 @@ -704,6 +768,9 @@ Epistle Ecclus 24:14-16 Gospel John 19:25-27 Commemoration St. Anicetus +=== Week 4 + + *18* 3rd Sunday after Easter + class-2 · white + Epistle 1 Pet 2:11-19 Gospel John 16:16-22 @@ -747,6 +814,9 @@ Epistle Wis 5:1-5 Gospel John 15:1-7 +=== Week 5 + + *25* 4th Sunday after Easter + class-2 · white + Epistle Jas 1:17-21 Gospel John 16:5-14 @@ -787,12 +857,18 @@ Epistle 2 Cor 10:17-18; 11:1-2 Gospel Matt 25:1-13. == May +=== Week 1 + + *1* St. Joseph the Workman + class-1 · white + Epistle Col. 3:14-15, 17, 23-24 Gospel Matt 13:54-58 +=== Week 2 + + *2* 5th Sunday after Easter + class-2 · white + Epistle Jas 1:22-27 Gospel John 16:23-30 @@ -837,6 +913,9 @@ Epistle Ecclus 24:14-16 Gospel John 19:25-27 +=== Week 3 + + *9* Sunday after the Ascension + class-2 · white + Epistle 1 Pet 4:7-11. Gospel John 15:26-27; 16:1-4. @@ -881,6 +960,9 @@ Epistle Acts 19:1-8. Gospel John 14:15-21. +=== Week 4 + + *16* Pentecost Sunday (Whitsunday) + class-1 · red + Epistle Acts 2:1-11. Gospel John 14:23-31. @@ -923,6 +1005,9 @@ Epistle Rom 5:1-5. Gospel Luke 4:38-44. +=== Week 5 + + *23* Trinity Sunday + class-1 · white + Epistle Rom 11:33-36. Gospel Matt 28:18-20 @@ -967,6 +1052,9 @@ Epistle 2 Cor 10:17-18; 11:1-2 Gospel Matt 25:1-13. +=== Week 6 + + *30* 2nd Sunday after Pentecost + class-2 · green + Epistle 1 John 3:13-18. Gospel Luke 14:16-24. @@ -983,6 +1071,9 @@ Commemoration St. Petronilla == June +=== Week 1 + + *1* St. Angela Merici + class-3 · white + Epistle 2 Cor 10:17-18; 11:1-2 Gospel Matt 25:1-13. @@ -1014,6 +1105,9 @@ Epistle Ecclus 44:1-15 Gospel Matt 5:1-12 +=== Week 2 + + *6* 3rd Sunday after Pentecost + class-2 · green + Epistle 1 Pet. 5:6-11 Gospel Luke 15:1-10 @@ -1058,6 +1152,9 @@ Epistle Sir 31:8-11 Gospel Luke 12:35-40 Commemoration St. Basilidus +=== Week 3 + + *13* 4th Sunday after Pentecost + class-2 · green + Epistle Rom 8:18-23 Gospel Luke 5:1-11 @@ -1103,6 +1200,9 @@ Epistle 2 Cor 10:17-18; 11:1-2 Gospel Matt 25:1-13. Commemoration Sts. Gervasius and Protasius +=== Week 4 + + *20* 5th Sunday after Pentecost + class-2 · green + Epistle 1 Pet 3:8-15. Gospel Matt 5:20-24. @@ -1145,6 +1245,9 @@ Epistle Eccli 44:10-15 Gospel Luke 12:1-8 +=== Week 5 + + *27* 6th Sunday after Pentecost + class-2 · green + Epistle Rom 6:3-11. Gospel Mark 8:1-9 @@ -1173,6 +1276,9 @@ Commemoration St. Peter == July +=== Week 1 + + *1* The Precious Blood of Our Lord Jesus Christ + class-1 · red + Epistle Heb 9:11-15. Gospel John 19:30-35 @@ -1192,6 +1298,9 @@ Epistle 2 Tim. 3:14-17; 4:1-5 Gospel Matt 10:28-33 +=== Week 2 + + *4* 7th Sunday after Pentecost + class-2 · green + Epistle Rom 6:19-23 Gospel Matt 7:15-21 @@ -1234,6 +1343,9 @@ Epistle Prov 31:10-31 Gospel Matt 12:46-50 +=== Week 3 + + *11* 8th Sunday after Pentecost + class-2 · green + Epistle Rom 8:12-17 Gospel Luke 16:1-9 @@ -1279,6 +1391,9 @@ Epistle Ecclus 24:14-16 Gospel Luke 11:27-28 Commemoration St. Alexis +=== Week 4 + + *18* 9th Sunday after Pentecost + class-2 · green + Epistle 1 Cor. 10:6-13 Gospel Luke 19:41-47 @@ -1325,6 +1440,9 @@ Epistle Ecclus 24:14-16 Gospel Luke 11:27-28 Commemoration St. Christina +=== Week 5 + + *25* 10th Sunday after Pentecost + class-2 · green + Epistle 1 Cor. 12:2-11 Gospel Luke 18:9-14 @@ -1374,6 +1492,9 @@ Epistle 2 Tim. 2:8-10; 3:10-12. Gospel Luke 10:1-9 == August +=== Week 1 + + *1* 11th Sunday after Pentecost + class-2 · green + Epistle 1 Cor. 15:1-10 Gospel Mark 7:31-37 @@ -1419,6 +1540,9 @@ Epistle Sir 31:8-11 Gospel Matt 6:24-33 Commemoration St. Donatus +=== Week 2 + + *8* 12th Sunday after Pentecost + class-2 · green + Epistle 2 Cor. 3:4-9 Gospel Luke 10:23-37 @@ -1465,6 +1589,9 @@ Epistle Sir 24:23-31 Gospel Luke 11:27-28 Commemoration St. Eusebius +=== Week 3 + + *15* Assumption of the Blessed Virgin Mary + class-1 · white + Epistle Judith 13:22-25; 15:10 Gospel Luke 1:41-50 @@ -1509,6 +1636,9 @@ Epistle Prov 31:10-31 Gospel Matt 13:44-52. +=== Week 4 + + *22* 14th Sunday after Pentecost + class-2 · green + Epistle Gal 5:16-24 Gospel Matt 6:24-33 @@ -1554,6 +1684,9 @@ Epistle 2 Tim 4:1-8 Gospel Matt 5:13-19 Commemoration St. Hermes +=== Week 5 + + *29* 15th Sunday after Pentecost + class-2 · green + Epistle Gal 5:25-26; 6:1-10 Gospel Luke 7:11-16 @@ -1576,6 +1709,9 @@ Epistle Sir 31:8-11 Gospel Luke 12:35-40 == September +=== Week 1 + + *1* Wednesday of the 15th Week of the Time after Pentecost + class-4 · green + Epistle Gal 5:25-26; 6:1-10 Gospel Luke 7:11-16 @@ -1602,6 +1738,9 @@ Epistle Ecclus 24:14-16 Gospel Luke 11:27-28 +=== Week 2 + + *5* 16th Sunday after Pentecost + class-2 · green + Epistle Eph 3:13-21 Gospel Luke 14:1-11 @@ -1647,6 +1786,9 @@ Epistle Ecclus 24:14-16 Gospel Luke 11:27-28 Commemoration Sts. Protus & Hyacinth +=== Week 3 + + *12* 17th Sunday after Pentecost + class-2 · green + Epistle Eph 4:1-6 Gospel Matt 22:34-46 @@ -1692,6 +1834,9 @@ Epistle 1 Cor 13:1-8 Gospel Matt 22:1-14 +=== Week 4 + + *19* 18th Sunday after Pentecost + class-2 · green + Epistle 1 Cor. 1:4-8 Gospel Matt 9:1-8 @@ -1738,6 +1883,9 @@ Epistle Heb 9:2-12 Gospel Luke 13:6-17 +=== Week 5 + + *26* 19th Sunday after Pentecost + class-2 · green + Epistle Eph 4:23-28 Gospel Matt 22:1-14 @@ -1771,6 +1919,9 @@ Epistle 2 Tim 4:1-8 Gospel Matt 5:13-19 == October +=== Week 1 + + *1* Friday of the 19th Week of the Time after Pentecost + class-4 · green + Epistle Eph 4:23-28 Gospel Matt 22:1-14 @@ -1784,6 +1935,9 @@ Epistle Exod 23:20-23 Gospel Matt 18:1-10 +=== Week 2 + + *3* 20th Sunday after Pentecost + class-2 · green + Epistle Eph 5:15-21 Gospel John 4:46-53 @@ -1830,6 +1984,9 @@ Epistle 2 Cor 4:1-6; 4:15-18 Gospel Luke 10:1-9 Commemoration St. Dionysius and companions +=== Week 3 + + *10* 21st Sunday after Pentecost + class-2 · green + Epistle Eph 6:10-17 Gospel Matt 18:23-35 @@ -1872,6 +2029,9 @@ Epistle Prov 31:10-31 Gospel Matt 13:44-52. +=== Week 4 + + *17* 22nd Sunday after Pentecost + class-2 · green + Epistle Phil 1:6-11 Gospel Matt 22:15-21 @@ -1916,6 +2076,9 @@ Epistle Heb 7:23-27 Gospel Matt 24:42-47 +=== Week 5 + + *24* 23rd Sunday after Pentecost + class-2 · green + Epistle Phil 3:17-21; 4:1-3 Gospel Matt 9:18-26 @@ -1960,6 +2123,9 @@ Epistle Ecclus 24:14-16 Gospel Luke 11:27-28 +=== Week 6 + + *31* Christ the King + class-1 · white + Epistle Col 1:12-20. Gospel John 18:33-37 @@ -1969,6 +2135,9 @@ Epistle Col 1:12-20. Gospel John 18:33-37 == November +=== Week 1 + + *1* All Saints + class-1 · white + Epistle Apoc 7:2-12 Gospel Matt 5:1-12 @@ -2006,6 +2175,9 @@ Epistle Ecclus 24:14-16 Gospel Luke 11:27-28 +=== Week 2 + + *7* 5th Sunday after Epiphany + class-2 · green + Epistle Col 3:12-17 Gospel Matt 13:24-30 @@ -2052,6 +2224,9 @@ Epistle 1 Cor 4:9-14 Gospel Luke 12:32-34 +=== Week 3 + + *14* 6th Sunday after Epiphany + class-2 · green + Epistle 1 Thess 1:2-10 Gospel Matt 13:31-35 @@ -2095,6 +2270,9 @@ Epistle 1 Cor. 4:9-14 Gospel Luke 12:32-34 +=== Week 4 + + *21* 24th and Last Sunday after Pentecost + class-2 · green + Epistle Col 1:9-14 Gospel Matt 24:15-35 @@ -2140,6 +2318,9 @@ Epistle Ecclus 24:14-16 Gospel Luke 11:27-28 +=== Week 5 + + *28* 1st Sunday of Advent + class-1 · violet + Epistle Rom 13:11-14 Gospel Luke 21:25-33 @@ -2163,6 +2344,9 @@ Commemoration Tuesday of the 1st Week of Advent == December +=== Week 1 + + *1* Wednesday of the 1st Week of Advent + class-3 · violet + Epistle Rom 13:11-14 Gospel Luke 21:25-33 @@ -2191,6 +2375,9 @@ Commemoration Saturday of the 1st Week of Advent + Commemoration St. Barbara +=== Week 2 + + *5* 2nd Sunday of Advent + class-1 · violet + Epistle Rom 15:4-13 Gospel Matt 11:2-10 @@ -2238,6 +2425,9 @@ Epistle 1 Pet 5:1-4; 5:10-11. Gospel Matt 16:13-19 Commemoration Saturday of the 2nd Week of Advent +=== Week 3 + + *12* 3rd Sunday of Advent + class-1 · rose + Epistle Phil 4:4-7 Gospel John 1:19-28 @@ -2282,6 +2472,9 @@ Epistle 2 Thess 2:1-8 Gospel Luke 3:1-6 +=== Week 4 + + *19* 4th Sunday of Advent + class-1 · violet + Epistle 1 Cor. 4:1-5 Gospel Luke 3:1-6 @@ -2325,6 +2518,9 @@ Epistle Heb 1:1-12 Gospel John 1:1-14 +=== Week 5 + + *26* Sunday within the Octave of the Nativity + class-2 · white + Epistle Gal 4:1-7 Gospel Luke 2:33-40 diff --git a/test/golden/ordo-2027.html b/test/golden/ordo-2027.html index ce7aa26..66831ee 100644 --- a/test/golden/ordo-2027.html +++ b/test/golden/ordo-2027.html @@ -7,11 +7,21 @@ (Ordo, Epistle, Gospel, Commemoration) comes from the view's term vocabulary rather than being written into this file, so a translated booklet needs no template edit. --> +<!-- Defect 2: HTML has no concept of a forced page break to begin with, + so this flavour was never one-week-per-page -- it mainly needed the + SAME header treatment the paginated flavours gained, for a reader + switching between them to find the same structure. Walks + months>weeks>days now (was months>days flat): an h2 per month + (unchanged) and a new h3 per week, using the week's own padded, + in-month-flagged day list rather than the month's flat, unpadded + one -- guarded accordingly below, the same guard every paginated + flavour's grid already needs for that field. --> <!doctype html> <html lang="la"><head><meta charset="utf-8"> <title>Ordo 2027</title> <style> body{font-family:serif;max-width:40em;margin:2em auto;line-height:1.4} + h3{font-size:1em;border-top:1px solid #ccc;padding-top:.3em;margin-top:1.2em} .day{margin:.6em 0;padding-left:2.5em;text-indent:-2.5em} .dom{display:inline-block;width:2em;font-weight:bold} .meta{font-size:.85em;color:#555} @@ -22,6 +32,7 @@ </style></head><body> <h1>Ordo 2027 · Roman Missal, 1962 typical edition</h1> <h2>January</h2> +<h3>Week 1</h3> <div class="day white"> <span class="dom">1</span>The Octave Day of the Nativity <div class="meta">class-1 · white · Epistle Titus 2:11-15 · Gospel Luke 2:21</div> @@ -32,6 +43,7 @@ <div class="meta">class-4 · white · Epistle Titus 3:4-7 · Gospel Luke 2:15-20</div> </div> +<h3>Week 2</h3> <div class="day white"> <span class="dom">3</span>The Holy Name of Jesus <div class="meta">class-2 · white · Epistle Acts 4:8-12 · Gospel Luke 2:21</div> @@ -67,6 +79,7 @@ <div class="meta">class-4 · white · Epistle Titus 3:4-7 · Gospel Luke 2:15-20</div> </div> +<h3>Week 3</h3> <div class="day white"> <span class="dom">10</span>The Holy Family <div class="meta">class-2 · white · Epistle Col 3:12-17 · Gospel Luke 2:42-52</div> @@ -102,6 +115,7 @@ <div class="meta">class-3 · red · Epistle 1 Pet 5:1-4; 5:10-11. · Gospel Matt 16:13-19</div> </div> +<h3>Week 4</h3> <div class="day green"> <span class="dom">17</span>2nd Sunday after Epiphany <div class="meta">class-2 · green · Epistle Rom 12:6-16 · Gospel John 2:1-11</div> @@ -137,6 +151,7 @@ <div class="meta">class-3 · white · Epistle Sir 31:8-11 · Gospel Luke 12:35-40</div> <div class="meta">Commemoration St. Emerentiana</div> </div> +<h3>Week 5</h3> <div class="day violet"> <span class="dom">24</span>Septuagesima Sunday <div class="meta">class-2 · violet · Epistle 1 Cor. 9:24-27; 10:1-5 · Gospel Matt 20:1-16</div> @@ -172,12 +187,14 @@ <div class="meta">class-3 · red · Epistle Sir 51:1-8; 51:12 · Gospel Matt 25:1-13.</div> </div> +<h3>Week 6</h3> <div class="day violet"> <span class="dom">31</span>Sexagesima Sunday <div class="meta">class-2 · violet · Epistle 2 Cor. 11:19-33; 12:1-9 · Gospel Luke 8:4-15</div> </div> <h2>February</h2> +<h3>Week 1</h3> <div class="day red"> <span class="dom">1</span>St. Ignatius of Antioch <div class="meta">class-3 · red · Epistle Rom 8:35-39 · Gospel John 12:24-26</div> @@ -208,6 +225,7 @@ <div class="meta">class-3 · white · Epistle Sir 44:16-27; 45:3-20 · Gospel Luke 10:1-9</div> <div class="meta">Commemoration St. Dorothy</div> </div> +<h3>Week 2</h3> <div class="day violet"> <span class="dom">7</span>Quinquagesima Sunday <div class="meta">class-2 · violet · Epistle 1 Cor. 13:1-13 · Gospel Luke 18:31-43</div> @@ -243,6 +261,7 @@ <div class="meta">class-3 · violet · Epistle Isa 58:9-14 · Gospel Mark 6:47-56</div> </div> +<h3>Week 3</h3> <div class="day violet"> <span class="dom">14</span>1st Sunday of Lent <div class="meta">class-1 · violet · Epistle 2 Cor. 6:1-10 · Gospel Matt 4:1-11</div> @@ -278,6 +297,7 @@ <div class="meta">class-2 · violet · Epistle 1 Thess. 5:14-23 · Gospel Matt 17:1-9</div> </div> +<h3>Week 4</h3> <div class="day violet"> <span class="dom">21</span>2nd Sunday of Lent <div class="meta">class-1 · violet · Epistle 1 Thess. 4:1-7 · Gospel Matt 17:1-9</div> @@ -313,12 +333,14 @@ <div class="meta">class-3 · violet · Epistle Gen 27:6-40 · Gospel Luke 15:11-32</div> <div class="meta">Commemoration St. Gabriel of Our Lady of Sorrows</div> </div> +<h3>Week 5</h3> <div class="day violet"> <span class="dom">28</span>3rd Sunday of Lent <div class="meta">class-1 · violet · Epistle Eph 5:1-9 · Gospel Luke 11:14-28</div> </div> <h2>March</h2> +<h3>Week 1</h3> <div class="day violet"> <span class="dom">1</span>Monday of the 3rd Week of Lent <div class="meta">class-3 · violet · Epistle 4 Kings 5:1-15 · Gospel Luke 4:23-30</div> @@ -349,6 +371,7 @@ <div class="meta">class-3 · violet · Epistle Dan 13:1-9, 15-17, 19-30, 33-62. · Gospel John 8:1-11</div> <div class="meta">Commemoration Sts. Felicitas & Perpetua</div> </div> +<h3>Week 2</h3> <div class="day rose"> <span class="dom">7</span>4th Sunday of Lent <div class="meta">class-1 · rose · Epistle Gal 4:22-31 · Gospel John 6:1-15</div> @@ -384,6 +407,7 @@ <div class="meta">class-3 · violet · Epistle Isa 49:8-15 · Gospel John 8:12-20</div> </div> +<h3>Week 3</h3> <div class="day violet"> <span class="dom">14</span>Passion Sunday <div class="meta">class-1 · violet · Epistle Heb 9:11-15. · Gospel John 8:46-59.</div> @@ -419,6 +443,7 @@ <div class="meta">class-3 · violet · Epistle Jer 18:18-23 · Gospel John 12:10-36</div> </div> +<h3>Week 4</h3> <div class="day violet"> <span class="dom">21</span>Palm Sunday <div class="meta">class-1 · violet · Epistle Phil 2:5-11 · Gospel Matt. 26:36-75; 27:1-60.</div> @@ -454,6 +479,7 @@ <div class="meta">class-1 · violet · Epistle Col 3:1-4 · Gospel Matt 28:1-7</div> </div> +<h3>Week 5</h3> <div class="day white"> <span class="dom">28</span>Easter Sunday <div class="meta">class-1 · white · Epistle 1 Cor 5:7-8 · Gospel Mark 16:1-7</div> @@ -475,6 +501,7 @@ </div> <h2>April</h2> +<h3>Week 1</h3> <div class="day white"> <span class="dom">1</span>Thursday of Easter Week <div class="meta">class-1 · white · Epistle Acts 8:26-40 · Gospel John 20:11-18</div> @@ -490,6 +517,7 @@ <div class="meta">class-1 · white · Epistle 1 Pet 2:1-10 · Gospel John 20:1-9</div> </div> +<h3>Week 2</h3> <div class="day white"> <span class="dom">4</span>Low Sunday (Sunday in Easter Octave) <div class="meta">class-1 · white · Epistle 1 John 5:4-10 · Gospel John 20:19-31</div> @@ -525,6 +553,7 @@ <div class="meta">class-4 · white · Epistle Ecclus 24:14-16 · Gospel John 19:25-27</div> </div> +<h3>Week 3</h3> <div class="day white"> <span class="dom">11</span>2nd Sunday after Easter <div class="meta">class-2 · white · Epistle 1 Pet 2:21-25 · Gospel John 10:11-16</div> @@ -560,6 +589,7 @@ <div class="meta">class-4 · white · Epistle Ecclus 24:14-16 · Gospel John 19:25-27</div> <div class="meta">Commemoration St. Anicetus</div> </div> +<h3>Week 4</h3> <div class="day white"> <span class="dom">18</span>3rd Sunday after Easter <div class="meta">class-2 · white · Epistle 1 Pet 2:11-19 · Gospel John 16:16-22</div> @@ -595,6 +625,7 @@ <div class="meta">class-3 · red · Epistle Wis 5:1-5 · Gospel John 15:1-7</div> </div> +<h3>Week 5</h3> <div class="day white"> <span class="dom">25</span>4th Sunday after Easter <div class="meta">class-2 · white · Epistle Jas 1:17-21 · Gospel John 16:5-14</div> @@ -626,11 +657,13 @@ </div> <h2>May</h2> +<h3>Week 1</h3> <div class="day white"> <span class="dom">1</span>St. Joseph the Workman <div class="meta">class-1 · white · Epistle Col. 3:14-15, 17, 23-24 · Gospel Matt 13:54-58</div> </div> +<h3>Week 2</h3> <div class="day white"> <span class="dom">2</span>5th Sunday after Easter <div class="meta">class-2 · white · Epistle Jas 1:22-27 · Gospel John 16:23-30</div> @@ -666,6 +699,7 @@ <div class="meta">class-4 · white · Epistle Ecclus 24:14-16 · Gospel John 19:25-27</div> </div> +<h3>Week 3</h3> <div class="day white"> <span class="dom">9</span>Sunday after the Ascension <div class="meta">class-2 · white · Epistle 1 Pet 4:7-11. · Gospel John 15:26-27; 16:1-4.</div> @@ -701,6 +735,7 @@ <div class="meta">class-1 · red · Epistle Acts 19:1-8. · Gospel John 14:15-21.</div> </div> +<h3>Week 4</h3> <div class="day red"> <span class="dom">16</span>Pentecost Sunday (Whitsunday) <div class="meta">class-1 · red · Epistle Acts 2:1-11. · Gospel John 14:23-31.</div> @@ -736,6 +771,7 @@ <div class="meta">class-1 · red · Epistle Rom 5:1-5. · Gospel Luke 4:38-44.</div> </div> +<h3>Week 5</h3> <div class="day white"> <span class="dom">23</span>Trinity Sunday <div class="meta">class-1 · white · Epistle Rom 11:33-36. · Gospel Matt 28:18-20</div> @@ -771,6 +807,7 @@ <div class="meta">class-3 · white · Epistle 2 Cor 10:17-18; 11:1-2 · Gospel Matt 25:1-13.</div> </div> +<h3>Week 6</h3> <div class="day green"> <span class="dom">30</span>2nd Sunday after Pentecost <div class="meta">class-2 · green · Epistle 1 John 3:13-18. · Gospel Luke 14:16-24.</div> @@ -782,6 +819,7 @@ <div class="meta">Commemoration St. Petronilla</div> </div> <h2>June</h2> +<h3>Week 1</h3> <div class="day white"> <span class="dom">1</span>St. Angela Merici <div class="meta">class-3 · white · Epistle 2 Cor 10:17-18; 11:1-2 · Gospel Matt 25:1-13.</div> @@ -807,6 +845,7 @@ <div class="meta">class-3 · red · Epistle Ecclus 44:1-15 · Gospel Matt 5:1-12</div> </div> +<h3>Week 2</h3> <div class="day green"> <span class="dom">6</span>3rd Sunday after Pentecost <div class="meta">class-2 · green · Epistle 1 Pet. 5:6-11 · Gospel Luke 15:1-10</div> @@ -842,6 +881,7 @@ <div class="meta">class-3 · white · Epistle Sir 31:8-11 · Gospel Luke 12:35-40</div> <div class="meta">Commemoration St. Basilidus</div> </div> +<h3>Week 3</h3> <div class="day green"> <span class="dom">13</span>4th Sunday after Pentecost <div class="meta">class-2 · green · Epistle Rom 8:18-23 · Gospel Luke 5:1-11</div> @@ -877,6 +917,7 @@ <div class="meta">class-3 · white · Epistle 2 Cor 10:17-18; 11:1-2 · Gospel Matt 25:1-13.</div> <div class="meta">Commemoration Sts. Gervasius and Protasius</div> </div> +<h3>Week 4</h3> <div class="day green"> <span class="dom">20</span>5th Sunday after Pentecost <div class="meta">class-2 · green · Epistle 1 Pet 3:8-15. · Gospel Matt 5:20-24.</div> @@ -912,6 +953,7 @@ <div class="meta">class-3 · red · Epistle Eccli 44:10-15 · Gospel Luke 12:1-8</div> </div> +<h3>Week 5</h3> <div class="day green"> <span class="dom">27</span>6th Sunday after Pentecost <div class="meta">class-2 · green · Epistle Rom 6:3-11. · Gospel Mark 8:1-9</div> @@ -933,6 +975,7 @@ <div class="meta">Commemoration St. Peter</div> </div> <h2>July</h2> +<h3>Week 1</h3> <div class="day red"> <span class="dom">1</span>The Precious Blood of Our Lord Jesus Christ <div class="meta">class-1 · red · Epistle Heb 9:11-15. · Gospel John 19:30-35</div> @@ -948,6 +991,7 @@ <div class="meta">class-3 · red · Epistle 2 Tim. 3:14-17; 4:1-5 · Gospel Matt 10:28-33</div> </div> +<h3>Week 2</h3> <div class="day green"> <span class="dom">4</span>7th Sunday after Pentecost <div class="meta">class-2 · green · Epistle Rom 6:19-23 · Gospel Matt 7:15-21</div> @@ -983,6 +1027,7 @@ <div class="meta">class-3 · red · Epistle Prov 31:10-31 · Gospel Matt 12:46-50</div> </div> +<h3>Week 3</h3> <div class="day green"> <span class="dom">11</span>8th Sunday after Pentecost <div class="meta">class-2 · green · Epistle Rom 8:12-17 · Gospel Luke 16:1-9</div> @@ -1018,6 +1063,7 @@ <div class="meta">class-4 · white · Epistle Ecclus 24:14-16 · Gospel Luke 11:27-28</div> <div class="meta">Commemoration St. Alexis</div> </div> +<h3>Week 4</h3> <div class="day green"> <span class="dom">18</span>9th Sunday after Pentecost <div class="meta">class-2 · green · Epistle 1 Cor. 10:6-13 · Gospel Luke 19:41-47</div> @@ -1053,6 +1099,7 @@ <div class="meta">class-4 · white · Epistle Ecclus 24:14-16 · Gospel Luke 11:27-28</div> <div class="meta">Commemoration St. Christina</div> </div> +<h3>Week 5</h3> <div class="day green"> <span class="dom">25</span>10th Sunday after Pentecost <div class="meta">class-2 · green · Epistle 1 Cor. 12:2-11 · Gospel Luke 18:9-14</div> @@ -1089,6 +1136,7 @@ </div> <h2>August</h2> +<h3>Week 1</h3> <div class="day green"> <span class="dom">1</span>11th Sunday after Pentecost <div class="meta">class-2 · green · Epistle 1 Cor. 15:1-10 · Gospel Mark 7:31-37</div> @@ -1124,6 +1172,7 @@ <div class="meta">class-3 · white · Epistle Sir 31:8-11 · Gospel Matt 6:24-33</div> <div class="meta">Commemoration St. Donatus</div> </div> +<h3>Week 2</h3> <div class="day green"> <span class="dom">8</span>12th Sunday after Pentecost <div class="meta">class-2 · green · Epistle 2 Cor. 3:4-9 · Gospel Luke 10:23-37</div> @@ -1159,6 +1208,7 @@ <div class="meta">class-2 · violet · Epistle Sir 24:23-31 · Gospel Luke 11:27-28</div> <div class="meta">Commemoration St. Eusebius</div> </div> +<h3>Week 3</h3> <div class="day white"> <span class="dom">15</span>Assumption of the Blessed Virgin Mary <div class="meta">class-1 · white · Epistle Judith 13:22-25; 15:10 · Gospel Luke 1:41-50</div> @@ -1194,6 +1244,7 @@ <div class="meta">class-3 · white · Epistle Prov 31:10-31 · Gospel Matt 13:44-52.</div> </div> +<h3>Week 4</h3> <div class="day green"> <span class="dom">22</span>14th Sunday after Pentecost <div class="meta">class-2 · green · Epistle Gal 5:16-24 · Gospel Matt 6:24-33</div> @@ -1229,6 +1280,7 @@ <div class="meta">class-3 · white · Epistle 2 Tim 4:1-8 · Gospel Matt 5:13-19</div> <div class="meta">Commemoration St. Hermes</div> </div> +<h3>Week 5</h3> <div class="day green"> <span class="dom">29</span>15th Sunday after Pentecost <div class="meta">class-2 · green · Epistle Gal 5:25-26; 6:1-10 · Gospel Luke 7:11-16</div> @@ -1245,6 +1297,7 @@ </div> <h2>September</h2> +<h3>Week 1</h3> <div class="day green"> <span class="dom">1</span>Wednesday of the 15th Week of the Time after Pentecost <div class="meta">class-4 · green · Epistle Gal 5:25-26; 6:1-10 · Gospel Luke 7:11-16</div> @@ -1265,6 +1318,7 @@ <div class="meta">class-4 · white · Epistle Ecclus 24:14-16 · Gospel Luke 11:27-28</div> </div> +<h3>Week 2</h3> <div class="day green"> <span class="dom">5</span>16th Sunday after Pentecost <div class="meta">class-2 · green · Epistle Eph 3:13-21 · Gospel Luke 14:1-11</div> @@ -1300,6 +1354,7 @@ <div class="meta">class-4 · white · Epistle Ecclus 24:14-16 · Gospel Luke 11:27-28</div> <div class="meta">Commemoration Sts. Protus & Hyacinth</div> </div> +<h3>Week 3</h3> <div class="day green"> <span class="dom">12</span>17th Sunday after Pentecost <div class="meta">class-2 · green · Epistle Eph 4:1-6 · Gospel Matt 22:34-46</div> @@ -1335,6 +1390,7 @@ <div class="meta">class-3 · white · Epistle 1 Cor 13:1-8 · Gospel Matt 22:1-14</div> </div> +<h3>Week 4</h3> <div class="day green"> <span class="dom">19</span>18th Sunday after Pentecost <div class="meta">class-2 · green · Epistle 1 Cor. 1:4-8 · Gospel Matt 9:1-8</div> @@ -1370,6 +1426,7 @@ <div class="meta">class-2 · violet · Epistle Heb 9:2-12 · Gospel Luke 13:6-17</div> </div> +<h3>Week 5</h3> <div class="day green"> <span class="dom">26</span>19th Sunday after Pentecost <div class="meta">class-2 · green · Epistle Eph 4:23-28 · Gospel Matt 22:1-14</div> @@ -1396,6 +1453,7 @@ </div> <h2>October</h2> +<h3>Week 1</h3> <div class="day green"> <span class="dom">1</span>Friday of the 19th Week of the Time after Pentecost <div class="meta">class-4 · green · Epistle Eph 4:23-28 · Gospel Matt 22:1-14</div> @@ -1406,6 +1464,7 @@ <div class="meta">class-3 · white · Epistle Exod 23:20-23 · Gospel Matt 18:1-10</div> </div> +<h3>Week 2</h3> <div class="day green"> <span class="dom">3</span>20th Sunday after Pentecost <div class="meta">class-2 · green · Epistle Eph 5:15-21 · Gospel John 4:46-53</div> @@ -1441,6 +1500,7 @@ <div class="meta">class-3 · white · Epistle 2 Cor 4:1-6; 4:15-18 · Gospel Luke 10:1-9</div> <div class="meta">Commemoration St. Dionysius and companions</div> </div> +<h3>Week 3</h3> <div class="day green"> <span class="dom">10</span>21st Sunday after Pentecost <div class="meta">class-2 · green · Epistle Eph 6:10-17 · Gospel Matt 18:23-35</div> @@ -1476,6 +1536,7 @@ <div class="meta">class-3 · white · Epistle Prov 31:10-31 · Gospel Matt 13:44-52.</div> </div> +<h3>Week 4</h3> <div class="day green"> <span class="dom">17</span>22nd Sunday after Pentecost <div class="meta">class-2 · green · Epistle Phil 1:6-11 · Gospel Matt 22:15-21</div> @@ -1511,6 +1572,7 @@ <div class="meta">class-3 · white · Epistle Heb 7:23-27 · Gospel Matt 24:42-47</div> </div> +<h3>Week 5</h3> <div class="day green"> <span class="dom">24</span>23rd Sunday after Pentecost <div class="meta">class-2 · green · Epistle Phil 3:17-21; 4:1-3 · Gospel Matt 9:18-26</div> @@ -1546,12 +1608,14 @@ <div class="meta">class-4 · white · Epistle Ecclus 24:14-16 · Gospel Luke 11:27-28</div> </div> +<h3>Week 6</h3> <div class="day white"> <span class="dom">31</span>Christ the King <div class="meta">class-1 · white · Epistle Col 1:12-20. · Gospel John 18:33-37</div> </div> <h2>November</h2> +<h3>Week 1</h3> <div class="day white"> <span class="dom">1</span>All Saints <div class="meta">class-1 · white · Epistle Apoc 7:2-12 · Gospel Matt 5:1-12</div> @@ -1582,6 +1646,7 @@ <div class="meta">class-4 · white · Epistle Ecclus 24:14-16 · Gospel Luke 11:27-28</div> </div> +<h3>Week 2</h3> <div class="day green"> <span class="dom">7</span>5th Sunday after Epiphany <div class="meta">class-2 · green · Epistle Col 3:12-17 · Gospel Matt 13:24-30</div> @@ -1617,6 +1682,7 @@ <div class="meta">class-3 · white · Epistle 1 Cor 4:9-14 · Gospel Luke 12:32-34</div> </div> +<h3>Week 3</h3> <div class="day green"> <span class="dom">14</span>6th Sunday after Epiphany <div class="meta">class-2 · green · Epistle 1 Thess 1:2-10 · Gospel Matt 13:31-35</div> @@ -1652,6 +1718,7 @@ <div class="meta">class-3 · white · Epistle 1 Cor. 4:9-14 · Gospel Luke 12:32-34</div> </div> +<h3>Week 4</h3> <div class="day green"> <span class="dom">21</span>24th and Last Sunday after Pentecost <div class="meta">class-2 · green · Epistle Col 1:9-14 · Gospel Matt 24:15-35</div> @@ -1687,6 +1754,7 @@ <div class="meta">class-4 · white · Epistle Ecclus 24:14-16 · Gospel Luke 11:27-28</div> </div> +<h3>Week 5</h3> <div class="day violet"> <span class="dom">28</span>1st Sunday of Advent <div class="meta">class-1 · violet · Epistle Rom 13:11-14 · Gospel Luke 21:25-33</div> @@ -1703,6 +1771,7 @@ <div class="meta">Commemoration Tuesday of the 1st Week of Advent</div> </div> <h2>December</h2> +<h3>Week 1</h3> <div class="day violet"> <span class="dom">1</span>Wednesday of the 1st Week of Advent <div class="meta">class-3 · violet · Epistle Rom 13:11-14 · Gospel Luke 21:25-33</div> @@ -1723,6 +1792,7 @@ <div class="meta">class-3 · white · Epistle 2 Tim 4:1-8 · Gospel Matt 5:13-19</div> <div class="meta">Commemoration Saturday of the 1st Week of Advent</div><div class="meta">Commemoration St. Barbara</div> </div> +<h3>Week 2</h3> <div class="day violet"> <span class="dom">5</span>2nd Sunday of Advent <div class="meta">class-1 · violet · Epistle Rom 15:4-13 · Gospel Matt 11:2-10</div> @@ -1758,6 +1828,7 @@ <div class="meta">class-3 · white · Epistle 1 Pet 5:1-4; 5:10-11. · Gospel Matt 16:13-19</div> <div class="meta">Commemoration Saturday of the 2nd Week of Advent</div> </div> +<h3>Week 3</h3> <div class="day rose"> <span class="dom">12</span>3rd Sunday of Advent <div class="meta">class-1 · rose · Epistle Phil 4:4-7 · Gospel John 1:19-28</div> @@ -1793,6 +1864,7 @@ <div class="meta">class-2 · violet · Epistle 2 Thess 2:1-8 · Gospel Luke 3:1-6</div> </div> +<h3>Week 4</h3> <div class="day violet"> <span class="dom">19</span>4th Sunday of Advent <div class="meta">class-1 · violet · Epistle 1 Cor. 4:1-5 · Gospel Luke 3:1-6</div> @@ -1828,6 +1900,7 @@ <div class="meta">class-1 · white · Epistle Heb 1:1-12 · Gospel John 1:1-14</div> </div> +<h3>Week 5</h3> <div class="day white"> <span class="dom">26</span>Sunday within the Octave of the Nativity <div class="meta">class-2 · white · Epistle Gal 4:1-7 · Gospel Luke 2:33-40</div> diff --git a/test/golden/ordo-2027.md b/test/golden/ordo-2027.md index ac3419f..583b4f6 100644 --- a/test/golden/ordo-2027.md +++ b/test/golden/ordo-2027.md @@ -11,12 +11,20 @@ (Ordo, Epistle, Gospel, Commemoration) comes from the view's term vocabulary rather than being written into this file, so a translated booklet needs no template edit. --> +<!-- Defect 2: Markdown has no page concept either, so this mainly needed + the same header treatment as the paginated flavours, for structural + consistency -- a ### per week under each month's ##, walking + months>weeks>days (the week's own padded, in-month-guarded day + list, not the flat unpadded one the old months>days loop used). --> # Ordo 2027 · Roman Missal, 1962 typical edition ## January +### Week 1 + + **1** The Octave Day of the Nativity `class-1` · white · Epistle Titus 2:11-15 · Gospel Luke 2:21 @@ -27,6 +35,9 @@ +### Week 2 + + **3** The Holy Name of Jesus `class-2` · white · Epistle Acts 4:8-12 · Gospel Luke 2:21 @@ -64,6 +75,9 @@ +### Week 3 + + **10** The Holy Family `class-2` · white · Epistle Col 3:12-17 · Gospel Luke 2:42-52 @@ -105,6 +119,9 @@ +### Week 4 + + **17** 2nd Sunday after Epiphany `class-2` · green · Epistle Rom 12:6-16 · Gospel John 2:1-11 @@ -148,6 +165,9 @@ +### Week 5 + + **24** Septuagesima Sunday `class-2` · violet · Epistle 1 Cor. 9:24-27; 10:1-5 · Gospel Matt 20:1-16 @@ -187,6 +207,9 @@ +### Week 6 + + **31** Sexagesima Sunday `class-2` · violet · Epistle 2 Cor. 11:19-33; 12:1-9 · Gospel Luke 8:4-15 @@ -195,6 +218,9 @@ ## February +### Week 1 + + **1** St. Ignatius of Antioch `class-3` · red · Epistle Rom 8:35-39 · Gospel John 12:24-26 @@ -229,6 +255,9 @@ +### Week 2 + + **7** Quinquagesima Sunday `class-2` · violet · Epistle 1 Cor. 13:1-13 · Gospel Luke 18:31-43 @@ -270,6 +299,9 @@ +### Week 3 + + **14** 1st Sunday of Lent `class-1` · violet · Epistle 2 Cor. 6:1-10 · Gospel Matt 4:1-11 @@ -309,6 +341,9 @@ +### Week 4 + + **21** 2nd Sunday of Lent `class-1` · violet · Epistle 1 Thess. 4:1-7 · Gospel Matt 17:1-9 @@ -354,6 +389,9 @@ +### Week 5 + + **28** 3rd Sunday of Lent `class-1` · violet · Epistle Eph 5:1-9 · Gospel Luke 11:14-28 @@ -362,6 +400,9 @@ ## March +### Week 1 + + **1** Monday of the 3rd Week of Lent `class-3` · violet · Epistle 4 Kings 5:1-15 · Gospel Luke 4:23-30 @@ -398,6 +439,9 @@ +### Week 2 + + **7** 4th Sunday of Lent `class-1` · rose · Epistle Gal 4:22-31 · Gospel John 6:1-15 @@ -441,6 +485,9 @@ +### Week 3 + + **14** Passion Sunday `class-1` · violet · Epistle Heb 9:11-15. · Gospel John 8:46-59. @@ -482,6 +529,9 @@ +### Week 4 + + **21** Palm Sunday `class-1` · violet · Epistle Phil 2:5-11 · Gospel Matt. 26:36-75; 27:1-60. @@ -517,6 +567,9 @@ +### Week 5 + + **28** Easter Sunday `class-1` · white · Epistle 1 Cor 5:7-8 · Gospel Mark 16:1-7 @@ -540,6 +593,9 @@ ## April +### Week 1 + + **1** Thursday of Easter Week `class-1` · white · Epistle Acts 8:26-40 · Gospel John 20:11-18 @@ -555,6 +611,9 @@ +### Week 2 + + **4** Low Sunday (Sunday in Easter Octave) `class-1` · white · Epistle 1 John 5:4-10 · Gospel John 20:19-31 @@ -590,6 +649,9 @@ +### Week 3 + + **11** 2nd Sunday after Easter `class-2` · white · Epistle 1 Pet 2:21-25 · Gospel John 10:11-16 @@ -629,6 +691,9 @@ +### Week 4 + + **18** 3rd Sunday after Easter `class-2` · white · Epistle 1 Pet 2:11-19 · Gospel John 16:16-22 @@ -666,6 +731,9 @@ +### Week 5 + + **25** 4th Sunday after Easter `class-2` · white · Epistle Jas 1:17-21 · Gospel John 16:5-14 @@ -701,11 +769,17 @@ ## May +### Week 1 + + **1** St. Joseph the Workman `class-1` · white · Epistle Col. 3:14-15, 17, 23-24 · Gospel Matt 13:54-58 +### Week 2 + + **2** 5th Sunday after Easter `class-2` · white · Epistle Jas 1:22-27 · Gospel John 16:23-30 @@ -745,6 +819,9 @@ +### Week 3 + + **9** Sunday after the Ascension `class-2` · white · Epistle 1 Pet 4:7-11. · Gospel John 15:26-27; 16:1-4. @@ -784,6 +861,9 @@ +### Week 4 + + **16** Pentecost Sunday (Whitsunday) `class-1` · red · Epistle Acts 2:1-11. · Gospel John 14:23-31. @@ -819,6 +899,9 @@ +### Week 5 + + **23** Trinity Sunday `class-1` · white · Epistle Rom 11:33-36. · Gospel Matt 28:18-20 @@ -858,6 +941,9 @@ +### Week 6 + + **30** 2nd Sunday after Pentecost `class-2` · green · Epistle 1 John 3:13-18. · Gospel Luke 14:16-24. @@ -873,6 +959,9 @@ ## June +### Week 1 + + **1** St. Angela Merici `class-3` · white · Epistle 2 Cor 10:17-18; 11:1-2 · Gospel Matt 25:1-13. @@ -900,6 +989,9 @@ +### Week 2 + + **6** 3rd Sunday after Pentecost `class-2` · green · Epistle 1 Pet. 5:6-11 · Gospel Luke 15:1-10 @@ -939,6 +1031,9 @@ +### Week 3 + + **13** 4th Sunday after Pentecost `class-2` · green · Epistle Rom 8:18-23 · Gospel Luke 5:1-11 @@ -980,6 +1075,9 @@ +### Week 4 + + **20** 5th Sunday after Pentecost `class-2` · green · Epistle 1 Pet 3:8-15. · Gospel Matt 5:20-24. @@ -1015,6 +1113,9 @@ +### Week 5 + + **27** 6th Sunday after Pentecost `class-2` · green · Epistle Rom 6:3-11. · Gospel Mark 8:1-9 @@ -1040,6 +1141,9 @@ ## July +### Week 1 + + **1** The Precious Blood of Our Lord Jesus Christ `class-1` · red · Epistle Heb 9:11-15. · Gospel John 19:30-35 @@ -1057,6 +1161,9 @@ +### Week 2 + + **4** 7th Sunday after Pentecost `class-2` · green · Epistle Rom 6:19-23 · Gospel Matt 7:15-21 @@ -1092,6 +1199,9 @@ +### Week 3 + + **11** 8th Sunday after Pentecost `class-2` · green · Epistle Rom 8:12-17 · Gospel Luke 16:1-9 @@ -1133,6 +1243,9 @@ +### Week 4 + + **18** 9th Sunday after Pentecost `class-2` · green · Epistle 1 Cor. 10:6-13 · Gospel Luke 19:41-47 @@ -1176,6 +1289,9 @@ +### Week 5 + + **25** 10th Sunday after Pentecost `class-2` · green · Epistle 1 Cor. 12:2-11 · Gospel Luke 18:9-14 @@ -1222,6 +1338,9 @@ ## August +### Week 1 + + **1** 11th Sunday after Pentecost `class-2` · green · Epistle 1 Cor. 15:1-10 · Gospel Mark 7:31-37 @@ -1263,6 +1382,9 @@ +### Week 2 + + **8** 12th Sunday after Pentecost `class-2` · green · Epistle 2 Cor. 3:4-9 · Gospel Luke 10:23-37 @@ -1306,6 +1428,9 @@ +### Week 3 + + **15** Assumption of the Blessed Virgin Mary `class-1` · white · Epistle Judith 13:22-25; 15:10 · Gospel Luke 1:41-50 @@ -1345,6 +1470,9 @@ +### Week 4 + + **22** 14th Sunday after Pentecost `class-2` · green · Epistle Gal 5:16-24 · Gospel Matt 6:24-33 @@ -1386,6 +1514,9 @@ +### Week 5 + + **29** 15th Sunday after Pentecost `class-2` · green · Epistle Gal 5:25-26; 6:1-10 · Gospel Luke 7:11-16 @@ -1406,6 +1537,9 @@ ## September +### Week 1 + + **1** Wednesday of the 15th Week of the Time after Pentecost `class-4` · green · Epistle Gal 5:25-26; 6:1-10 · Gospel Luke 7:11-16 @@ -1430,6 +1564,9 @@ +### Week 2 + + **5** 16th Sunday after Pentecost `class-2` · green · Epistle Eph 3:13-21 · Gospel Luke 14:1-11 @@ -1471,6 +1608,9 @@ +### Week 3 + + **12** 17th Sunday after Pentecost `class-2` · green · Epistle Eph 4:1-6 · Gospel Matt 22:34-46 @@ -1512,6 +1652,9 @@ +### Week 4 + + **19** 18th Sunday after Pentecost `class-2` · green · Epistle 1 Cor. 1:4-8 · Gospel Matt 9:1-8 @@ -1555,6 +1698,9 @@ +### Week 5 + + **26** 19th Sunday after Pentecost `class-2` · green · Epistle Eph 4:23-28 · Gospel Matt 22:1-14 @@ -1583,6 +1729,9 @@ ## October +### Week 1 + + **1** Friday of the 19th Week of the Time after Pentecost `class-4` · green · Epistle Eph 4:23-28 · Gospel Matt 22:1-14 @@ -1595,6 +1744,9 @@ +### Week 2 + + **3** 20th Sunday after Pentecost `class-2` · green · Epistle Eph 5:15-21 · Gospel John 4:46-53 @@ -1638,6 +1790,9 @@ +### Week 3 + + **10** 21st Sunday after Pentecost `class-2` · green · Epistle Eph 6:10-17 · Gospel Matt 18:23-35 @@ -1673,6 +1828,9 @@ +### Week 4 + + **17** 22nd Sunday after Pentecost `class-2` · green · Epistle Phil 1:6-11 · Gospel Matt 22:15-21 @@ -1712,6 +1870,9 @@ +### Week 5 + + **24** 23rd Sunday after Pentecost `class-2` · green · Epistle Phil 3:17-21; 4:1-3 · Gospel Matt 9:18-26 @@ -1751,6 +1912,9 @@ +### Week 6 + + **31** Christ the King `class-1` · white · Epistle Col 1:12-20. · Gospel John 18:33-37 @@ -1759,6 +1923,9 @@ ## November +### Week 1 + + **1** All Saints `class-1` · white · Epistle Apoc 7:2-12 · Gospel Matt 5:1-12 @@ -1791,6 +1958,9 @@ +### Week 2 + + **7** 5th Sunday after Epiphany `class-2` · green · Epistle Col 3:12-17 · Gospel Matt 13:24-30 @@ -1834,6 +2004,9 @@ +### Week 3 + + **14** 6th Sunday after Epiphany `class-2` · green · Epistle 1 Thess 1:2-10 · Gospel Matt 13:31-35 @@ -1871,6 +2044,9 @@ +### Week 4 + + **21** 24th and Last Sunday after Pentecost `class-2` · green · Epistle Col 1:9-14 · Gospel Matt 24:15-35 @@ -1912,6 +2088,9 @@ +### Week 5 + + **28** 1st Sunday of Advent `class-1` · violet · Epistle Rom 13:11-14 · Gospel Luke 21:25-33 @@ -1934,6 +2113,9 @@ ## December +### Week 1 + + **1** Wednesday of the 1st Week of Advent `class-3` · violet · Epistle Rom 13:11-14 · Gospel Luke 21:25-33 @@ -1962,6 +2144,9 @@ +### Week 2 + + **5** 2nd Sunday of Advent `class-1` · violet · Epistle Rom 15:4-13 · Gospel Matt 11:2-10 @@ -2007,6 +2192,9 @@ +### Week 3 + + **12** 3rd Sunday of Advent `class-1` · rose · Epistle Phil 4:4-7 · Gospel John 1:19-28 @@ -2046,6 +2234,9 @@ +### Week 4 + + **19** 4th Sunday of Advent `class-1` · violet · Epistle 1 Cor. 4:1-5 · Gospel Luke 3:1-6 @@ -2083,6 +2274,9 @@ +### Week 5 + + **26** Sunday within the Octave of the Nativity `class-2` · white · Epistle Gal 4:1-7 · Gospel Luke 2:33-40 diff --git a/test/golden/ordo-2027.ms b/test/golden/ordo-2027.ms index 4594e43..cfaada9 100644 --- a/test/golden/ordo-2027.ms +++ b/test/golden/ordo-2027.ms @@ -9,12 +9,21 @@ .\" (Ordo, Epistle, Gospel, Commemoration) comes from the view's term .\" vocabulary rather than being written into this file, so a translated .\" booklet needs no template edit. +.\" +.\" Defect 2: groff -ms paginates its own way (no per-week \" clearpage \" +.\" this template ever forced), so it mainly needed the same header +.\" treatment as the paginated flavours, for structural consistency -- a +.\" bold week run-in under each month's own .SH, walking months>weeks>days +.\" (the week's own padded, in-month-guarded day list) in place of the +.\" old months>days flat loop over the month's own flat one. .TL Ordo 2027 \(bu Roman Missal, 1962 typical edition .SH January + .LP +\fBWeek 1\fR .IP "1" 4 The Octave Day of the Nativity @@ -34,6 +43,10 @@ Our Lady's Saturday Office .br \s-2Gospel Luke 2:15-20\s+2 + +.LP +\fBWeek 2\fR + .IP "3" 4 The Holy Name of Jesus .br @@ -99,6 +112,10 @@ Our Lady's Saturday Office .br \s-2Gospel Luke 2:15-20\s+2 + +.LP +\fBWeek 3\fR + .IP "10" 4 The Holy Family .br @@ -168,6 +185,10 @@ St. Marcellus I .br \s-2Gospel Matt 16:13-19\s+2 + +.LP +\fBWeek 4\fR + .IP "17" 4 2nd Sunday after Epiphany .br @@ -239,6 +260,10 @@ St. Raymond of Peñafort .br \s-2Commemoration St. Emerentiana\s+2 + +.LP +\fBWeek 5\fR + .IP "24" 4 Septuagesima Sunday .br @@ -306,6 +331,10 @@ St. Martina .br \s-2Gospel Matt 25:1-13.\s+2 + +.LP +\fBWeek 6\fR + .IP "31" 4 Sexagesima Sunday .br @@ -316,9 +345,12 @@ Sexagesima Sunday \s-2Gospel Luke 8:4-15\s+2 + .SH February + .LP +\fBWeek 1\fR .IP "1" 4 St. Ignatius of Antioch @@ -378,6 +410,10 @@ St. Titus .br \s-2Commemoration St. Dorothy\s+2 + +.LP +\fBWeek 2\fR + .IP "7" 4 Quinquagesima Sunday .br @@ -447,6 +483,10 @@ Saturday after Ash Wednesday .br \s-2Gospel Mark 6:47-56\s+2 + +.LP +\fBWeek 3\fR + .IP "14" 4 1st Sunday of Lent .br @@ -514,6 +554,10 @@ Lenten Ember Saturday .br \s-2Gospel Matt 17:1-9\s+2 + +.LP +\fBWeek 4\fR + .IP "21" 4 2nd Sunday of Lent .br @@ -587,6 +631,10 @@ Saturday of the 2nd Week of Lent .br \s-2Commemoration St. Gabriel of Our Lady of Sorrows\s+2 + +.LP +\fBWeek 5\fR + .IP "28" 4 3rd Sunday of Lent .br @@ -597,9 +645,12 @@ Saturday of the 2nd Week of Lent \s-2Gospel Luke 11:14-28\s+2 + .SH March + .LP +\fBWeek 1\fR .IP "1" 4 Monday of the 3rd Week of Lent @@ -661,6 +712,10 @@ Saturday of the 3rd Week of Lent .br \s-2Commemoration Sts. Felicitas & Perpetua\s+2 + +.LP +\fBWeek 2\fR + .IP "7" 4 4th Sunday of Lent .br @@ -732,6 +787,10 @@ Saturday of the 4th Week of Lent .br \s-2Gospel John 8:12-20\s+2 + +.LP +\fBWeek 3\fR + .IP "14" 4 Passion Sunday .br @@ -801,6 +860,10 @@ Saturday of the 1st Week of Passion Week .br \s-2Gospel John 12:10-36\s+2 + +.LP +\fBWeek 4\fR + .IP "21" 4 Palm Sunday .br @@ -864,6 +927,10 @@ Holy Saturday .br \s-2Gospel Matt 28:1-7\s+2 + +.LP +\fBWeek 5\fR + .IP "28" 4 Easter Sunday .br @@ -901,9 +968,12 @@ Wednesday of Easter Week \s-2Gospel John 21:1-14\s+2 + .SH April + .LP +\fBWeek 1\fR .IP "1" 4 Thursday of Easter Week @@ -932,6 +1002,10 @@ Saturday of Easter Week .br \s-2Gospel John 20:1-9\s+2 + +.LP +\fBWeek 2\fR + .IP "4" 4 Low Sunday (Sunday in Easter Octave) .br @@ -995,6 +1069,10 @@ Our Lady's Saturday Office .br \s-2Gospel John 19:25-27\s+2 + +.LP +\fBWeek 3\fR + .IP "11" 4 2nd Sunday after Easter .br @@ -1062,6 +1140,10 @@ Our Lady's Saturday Office .br \s-2Commemoration St. Anicetus\s+2 + +.LP +\fBWeek 4\fR + .IP "18" 4 3rd Sunday after Easter .br @@ -1127,6 +1209,10 @@ St. Fidelis of Sigmaringen .br \s-2Gospel John 15:1-7\s+2 + +.LP +\fBWeek 5\fR + .IP "25" 4 4th Sunday after Easter .br @@ -1184,9 +1270,12 @@ St. Catherine of Siena \s-2Gospel Matt 25:1-13.\s+2 + .SH May + .LP +\fBWeek 1\fR .IP "1" 4 St. Joseph the Workman @@ -1197,6 +1286,10 @@ St. Joseph the Workman .br \s-2Gospel Matt 13:54-58\s+2 + +.LP +\fBWeek 2\fR + .IP "2" 4 5th Sunday after Easter .br @@ -1264,6 +1357,10 @@ Our Lady's Saturday Office .br \s-2Gospel John 19:25-27\s+2 + +.LP +\fBWeek 3\fR + .IP "9" 4 Sunday after the Ascension .br @@ -1331,6 +1428,10 @@ Vigil of Pentecost .br \s-2Gospel John 14:15-21.\s+2 + +.LP +\fBWeek 4\fR + .IP "16" 4 Pentecost Sunday (Whitsunday) .br @@ -1394,6 +1495,10 @@ Pentecost Ember Saturday .br \s-2Gospel Luke 4:38-44.\s+2 + +.LP +\fBWeek 5\fR + .IP "23" 4 Trinity Sunday .br @@ -1461,6 +1566,10 @@ St. Mary Magdalene de Pazzi .br \s-2Gospel Matt 25:1-13.\s+2 + +.LP +\fBWeek 6\fR + .IP "30" 4 2nd Sunday after Pentecost .br @@ -1482,9 +1591,12 @@ Queenship of the Blessed Virgin Mary \s-2Commemoration St. Petronilla\s+2 + .SH June + .LP +\fBWeek 1\fR .IP "1" 4 St. Angela Merici @@ -1533,6 +1645,10 @@ St. Boniface .br \s-2Gospel Matt 5:1-12\s+2 + +.LP +\fBWeek 2\fR + .IP "6" 4 3rd Sunday after Pentecost .br @@ -1600,6 +1716,10 @@ St. John of San Fecundo .br \s-2Commemoration St. Basilidus\s+2 + +.LP +\fBWeek 3\fR + .IP "13" 4 4th Sunday after Pentecost .br @@ -1669,6 +1789,10 @@ St. Julia of Falconieri .br \s-2Commemoration Sts. Gervasius and Protasius\s+2 + +.LP +\fBWeek 4\fR + .IP "20" 4 5th Sunday after Pentecost .br @@ -1732,6 +1856,10 @@ Sts. John & Paul .br \s-2Gospel Luke 12:1-8\s+2 + +.LP +\fBWeek 5\fR + .IP "27" 4 6th Sunday after Pentecost .br @@ -1771,9 +1899,12 @@ In Commemoratione Sancti Pauli Apostoli \s-2Commemoration St. Peter\s+2 + .SH July + .LP +\fBWeek 1\fR .IP "1" 4 The Precious Blood of Our Lord Jesus Christ @@ -1804,6 +1935,10 @@ St. Irenaeus .br \s-2Gospel Matt 10:28-33\s+2 + +.LP +\fBWeek 2\fR + .IP "4" 4 7th Sunday after Pentecost .br @@ -1867,6 +2002,10 @@ Seven Holy Brothers and Sts. Rufina & Secunda .br \s-2Gospel Matt 12:46-50\s+2 + +.LP +\fBWeek 3\fR + .IP "11" 4 8th Sunday after Pentecost .br @@ -1936,6 +2075,10 @@ Our Lady's Saturday Office .br \s-2Commemoration St. Alexis\s+2 + +.LP +\fBWeek 4\fR + .IP "18" 4 9th Sunday after Pentecost .br @@ -2007,6 +2150,10 @@ Our Lady's Saturday Office .br \s-2Commemoration St. Christina\s+2 + +.LP +\fBWeek 5\fR + .IP "25" 4 10th Sunday after Pentecost .br @@ -2079,9 +2226,12 @@ St. Ignatius Loyola \s-2Gospel Luke 10:1-9\s+2 + .SH August + .LP +\fBWeek 1\fR .IP "1" 4 11th Sunday after Pentecost @@ -2152,6 +2302,10 @@ St. Cajetan .br \s-2Commemoration St. Donatus\s+2 + +.LP +\fBWeek 2\fR + .IP "8" 4 12th Sunday after Pentecost .br @@ -2223,6 +2377,10 @@ Vigil of the Assumption .br \s-2Commemoration St. Eusebius\s+2 + +.LP +\fBWeek 3\fR + .IP "15" 4 Assumption of the Blessed Virgin Mary .br @@ -2290,6 +2448,10 @@ St. Jane Frances de Chantal .br \s-2Gospel Matt 13:44-52.\s+2 + +.LP +\fBWeek 4\fR + .IP "22" 4 14th Sunday after Pentecost .br @@ -2359,6 +2521,10 @@ St. Augustine .br \s-2Commemoration St. Hermes\s+2 + +.LP +\fBWeek 5\fR + .IP "29" 4 15th Sunday after Pentecost .br @@ -2389,9 +2555,12 @@ St. Raymond Nonnatus \s-2Gospel Luke 12:35-40\s+2 + .SH September + .LP +\fBWeek 1\fR .IP "1" 4 Wednesday of the 15th Week of the Time after Pentecost @@ -2433,6 +2602,10 @@ Our Lady's Saturday Office .br \s-2Gospel Luke 11:27-28\s+2 + +.LP +\fBWeek 2\fR + .IP "5" 4 16th Sunday after Pentecost .br @@ -2502,6 +2675,10 @@ Our Lady's Saturday Office .br \s-2Commemoration Sts. Protus & Hyacinth\s+2 + +.LP +\fBWeek 3\fR + .IP "12" 4 17th Sunday after Pentecost .br @@ -2571,6 +2748,10 @@ St. Joseph of Cupertino .br \s-2Gospel Matt 22:1-14\s+2 + +.LP +\fBWeek 4\fR + .IP "19" 4 18th Sunday after Pentecost .br @@ -2642,6 +2823,10 @@ September Ember Saturday .br \s-2Gospel Luke 13:6-17\s+2 + +.LP +\fBWeek 5\fR + .IP "26" 4 19th Sunday after Pentecost .br @@ -2688,9 +2873,12 @@ St. Jerome \s-2Gospel Matt 5:13-19\s+2 + .SH October + .LP +\fBWeek 1\fR .IP "1" 4 Friday of the 19th Week of the Time after Pentecost @@ -2712,6 +2900,10 @@ Holy Guardian Angels .br \s-2Gospel Matt 18:1-10\s+2 + +.LP +\fBWeek 2\fR + .IP "3" 4 20th Sunday after Pentecost .br @@ -2783,6 +2975,10 @@ St. John Leonardi .br \s-2Commemoration St. Dionysius and companions\s+2 + +.LP +\fBWeek 3\fR + .IP "10" 4 21st Sunday after Pentecost .br @@ -2846,6 +3042,10 @@ St. Hedwig .br \s-2Gospel Matt 13:44-52.\s+2 + +.LP +\fBWeek 4\fR + .IP "17" 4 22nd Sunday after Pentecost .br @@ -2913,6 +3113,10 @@ St. Anthony Mary Claret .br \s-2Gospel Matt 24:42-47\s+2 + +.LP +\fBWeek 5\fR + .IP "24" 4 23rd Sunday after Pentecost .br @@ -2980,6 +3184,10 @@ Our Lady's Saturday Office .br \s-2Gospel Luke 11:27-28\s+2 + +.LP +\fBWeek 6\fR + .IP "31" 4 Christ the King .br @@ -2990,9 +3198,12 @@ Christ the King \s-2Gospel John 18:33-37\s+2 + .SH November + .LP +\fBWeek 1\fR .IP "1" 4 All Saints @@ -3050,6 +3261,10 @@ Our Lady's Saturday Office .br \s-2Gospel Luke 11:27-28\s+2 + +.LP +\fBWeek 2\fR + .IP "7" 4 5th Sunday after Epiphany .br @@ -3121,6 +3336,10 @@ St. Didacus .br \s-2Gospel Luke 12:32-34\s+2 + +.LP +\fBWeek 3\fR + .IP "14" 4 6th Sunday after Epiphany .br @@ -3186,6 +3405,10 @@ St. Felix of Valois .br \s-2Gospel Luke 12:32-34\s+2 + +.LP +\fBWeek 4\fR + .IP "21" 4 24th and Last Sunday after Pentecost .br @@ -3255,6 +3478,10 @@ Our Lady's Saturday Office .br \s-2Gospel Luke 11:27-28\s+2 + +.LP +\fBWeek 5\fR + .IP "28" 4 1st Sunday of Advent .br @@ -3287,9 +3514,12 @@ St. Andrew \s-2Commemoration Tuesday of the 1st Week of Advent\s+2 + .SH December + .LP +\fBWeek 1\fR .IP "1" 4 Wednesday of the 1st Week of Advent @@ -3335,6 +3565,10 @@ St. Peter Chrysologus .br \s-2Commemoration St. Barbara\s+2 + +.LP +\fBWeek 2\fR + .IP "5" 4 2nd Sunday of Advent .br @@ -3408,6 +3642,10 @@ St. Damasus I .br \s-2Commemoration Saturday of the 2nd Week of Advent\s+2 + +.LP +\fBWeek 3\fR + .IP "12" 4 3rd Sunday of Advent .br @@ -3475,6 +3713,10 @@ Advent Ember Saturday .br \s-2Gospel Luke 3:1-6\s+2 + +.LP +\fBWeek 4\fR + .IP "19" 4 4th Sunday of Advent .br @@ -3540,6 +3782,10 @@ The Nativity of Our Lord (Christmas) .br \s-2Gospel John 1:1-14\s+2 + +.LP +\fBWeek 5\fR + .IP "26" 4 Sunday within the Octave of the Nativity .br @@ -3605,3 +3851,4 @@ Holy Innocents \s-2Commemoration St. Silvester\s+2 + diff --git a/test/golden/ordo-2027.tex b/test/golden/ordo-2027.tex index 21b711e..e432f8c 100644 --- a/test/golden/ordo-2027.tex +++ b/test/golden/ordo-2027.tex @@ -2,11 +2,61 @@ % Build: colitur table --year 2027 --template ordo.tex > ordo.tex && pdflatex ordo.tex && % pdflatex ordo.tex (twice, so \pageref in the table of contents settles) % -% A5, one week per page, each day in a framed box with a colour swatch. Every -% fixed string (headings, the Epistle/Gospel/Commemoration/Week labels) -% comes from the view's term vocabulary rather than being written into this -% file, so a translated booklet needs no template edit -- only a different -% --lang. +% A5, CONTINUOUS: days flow one after another with no forced page break per +% week (Defect 2 -- the original one-week-per-page layout filled roughly +% the top third of every page and cost 65 pages for a year that needed far +% fewer; that requirement is reversed here on purpose, not merely relaxed). +% Structure stays scannable through two header weights instead: every +% week still opens with its existing small header line ( . +% Week N), and the month's own FIRST week additionally gets a +% large, ruled banner above that line (, a real +% view field -- lib/render/view.ml -- not template-side arithmetic, since +% this engine has no way to test "is this the first item" any other way). +% \needspace (a genuine, tiny dependency, not one of the deps this project +% freezes at the OCaml level -- LaTeX packages are a template author's own +% concern) keeps a header from being stranded alone at a page's bottom +% with its first day box pushed to the next one: 29mm covers the month +% banner's own rule+title (~11.5mm) plus the week header below it +% (~5.5mm) plus room for at least one day box (~10mm); 16mm covers just +% the week header plus one day box. Both re-verified against the actual +% typeset output, not derived from theory alone (the task report has the +% before/after page counts and a scan proving no header is ever left +% alone at a page's foot with nothing under it). +% +% \label fires AFTER both \needspace calls below, not before: a \label +% placed before a \needspace that goes on to force a break captures the +% OLD page number (\thepage at the point \label is processed, not where +% its content actually lands) -- a step-stale \pageref found live in an +% early draft's own TOC (week 3 read "page 3" while its own content +% demonstrably started on page 4). Moving the label to fire only once the +% page a week ACTUALLY starts on is already decided fixes it at the +% source, cheaper than a third pdflatex pass, which would not have fixed +% it either (the wrong page number was already committed to the .aux by +% the second pass). +% +% Each day in a framed box with a colour swatch, tightened from an +% earlier draft (top/bottom padding 0.4mm, before skip 0.5mm, \scriptsize +% meta text, rank/colour and the citations on separate lines) for this +% same continuous flow: a full 7-day week already occupies most of an A5 +% page even at reduced size (measured: 55-65% of the text height for a +% typical week, more with commemorations), so simply dropping the forced +% per-week \clearpage only let the year's many PARTIAL boundary weeks +% double up, not full ones -- a real but small saving on its own. Three +% changes together fit a genuinely useful second (often third, on a short +% week) week onto the same page: \fontsize explicitly (not \scriptsize, +% whose 7pt/8.4pt leading is looser than a dense booklet needs), the +% feast name still a clearly-bolder 9pt, and rank/colour folded onto the +% SAME line as the citations rather than a line of its own -- an A5 box +% is far wider than it is tall (roughly 120mm of usable width here), so +% "I classis . albus Epistola ... Evangelium ..." fits with room to +% spare even on Holy Week's own longest citations (measured against the +% rendered output, not assumed; see the task report for the page count +% this bought). +% +% Every fixed string (headings, the Epistle/Gospel/Commemoration/Week +% labels) comes from the view's term vocabulary rather than being written +% into this file, so a translated booklet needs no template edit -- only +% a different --lang. % % The observed day's own display name is a PLAIN resolved string % (View.of_days, Task 5), never a lang-keyed object -- there is no @@ -49,6 +99,7 @@ \usepackage{tcolorbox} \usepackage{fancyhdr} \usepackage[hidelinks]{hyperref} +\usepackage{needspace} \definecolor{licolwhite}{HTML}{FFFFFF} \definecolor{licolred}{HTML}{C1272D} \definecolor{licolgreen}{HTML}{2E7D32} @@ -179,6 +230,12 @@ \clearpage + +\needspace{29mm} +\vspace{2mm}\noindent\rule{\linewidth}{1pt}\par\vspace{0.8mm} +{\LARGE\bfseries January 2027 }\par\vspace{1mm} + +\needspace{16mm} \label{w1-1} {\bfseries\large January }\hfill{\small Week 1}\par\vspace{0.5mm} @@ -193,336 +250,315 @@ -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 1 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par -{\bfseries The Octave Day of the Nativity }\par -{\scriptsize 1st Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Titus 2:11-15 }\quad{\scriptsize Gospel\ Luke 2:21 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 1 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries The Octave Day of the Nativity }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ White \quad Epistle\ Titus 2:11-15 \quad Gospel\ Luke 2:21 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 2 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par -{\bfseries Our Lady's Saturday Office }\par -{\scriptsize 4th Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Titus 3:4-7 }\quad{\scriptsize Gospel\ Luke 2:15-20 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 2 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Our Lady's Saturday Office }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ White \quad Epistle\ Titus 3:4-7 \quad Gospel\ Luke 2:15-20 } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w1-2} {\bfseries\large January }\hfill{\small Week 2}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 3 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par -{\bfseries The Holy Name of Jesus }\par -{\scriptsize 2nd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Acts 4:8-12 }\quad{\scriptsize Gospel\ Luke 2:21 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 3 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries The Holy Name of Jesus }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ White \quad Epistle\ Acts 4:8-12 \quad Gospel\ Luke 2:21 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 4 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par -{\bfseries Monday before Epiphany }\par -{\scriptsize 4th Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Titus 2:11-15 }\quad{\scriptsize Gospel\ Luke 2:21 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 4 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Monday before Epiphany }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ White \quad Epistle\ Titus 2:11-15 \quad Gospel\ Luke 2:21 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 5 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par -{\bfseries Tuesday before Epiphany }\par -{\scriptsize 4th Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Titus 2:11-15 }\quad{\scriptsize Gospel\ Luke 2:21 } -\par{\scriptsize Commemoration\ St. Telesphorus Pope and Martyr } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 5 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Tuesday before Epiphany }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ White \quad Epistle\ Titus 2:11-15 \quad Gospel\ Luke 2:21 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Telesphorus Pope and Martyr } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 6 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par -{\bfseries The Epiphany of Our Lord }\par -{\scriptsize 1st Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Isa 60:1-6 }\quad{\scriptsize Gospel\ Matt 2:1-12 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 6 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries The Epiphany of Our Lord }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ White \quad Epistle\ Isa 60:1-6 \quad Gospel\ Matt 2:1-12 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 7 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par -{\bfseries Thursday after Epiphany }\par -{\scriptsize 4th Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Isa 60:1-6 }\quad{\scriptsize Gospel\ Matt 2:1-12 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 7 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Thursday after Epiphany }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ White \quad Epistle\ Isa 60:1-6 \quad Gospel\ Matt 2:1-12 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 8 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par -{\bfseries Friday after Epiphany }\par -{\scriptsize 4th Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Isa 60:1-6 }\quad{\scriptsize Gospel\ Matt 2:1-12 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 8 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Friday after Epiphany }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ White \quad Epistle\ Isa 60:1-6 \quad Gospel\ Matt 2:1-12 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 9 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par -{\bfseries Our Lady's Saturday Office }\par -{\scriptsize 4th Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Titus 3:4-7 }\quad{\scriptsize Gospel\ Luke 2:15-20 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 9 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Our Lady's Saturday Office }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ White \quad Epistle\ Titus 3:4-7 \quad Gospel\ Luke 2:15-20 } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w1-3} {\bfseries\large January }\hfill{\small Week 3}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 10 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par -{\bfseries The Holy Family }\par -{\scriptsize 2nd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Col 3:12-17 }\quad{\scriptsize Gospel\ Luke 2:42-52 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 10 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries The Holy Family }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ White \quad Epistle\ Col 3:12-17 \quad Gospel\ Luke 2:42-52 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 11 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par -{\bfseries Monday of the 1st Week of the Time after Epiphany }\par -{\scriptsize 4th Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Rom 12:1-5 }\quad{\scriptsize Gospel\ Luke 2:42-52 } -\par{\scriptsize Commemoration\ St. Hyginus Pope and Martyr } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 11 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Monday of the 1st Week of the Time after Epiphany }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ White \quad Epistle\ Rom 12:1-5 \quad Gospel\ Luke 2:42-52 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Hyginus Pope and Martyr } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 12 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par -{\bfseries Tuesday of the 1st Week of the Time after Epiphany }\par -{\scriptsize 4th Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Rom 12:1-5 }\quad{\scriptsize Gospel\ Luke 2:42-52 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 12 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Tuesday of the 1st Week of the Time after Epiphany }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ White \quad Epistle\ Rom 12:1-5 \quad Gospel\ Luke 2:42-52 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 13 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par -{\bfseries Commemoration of the Baptism of the Lord }\par -{\scriptsize 2nd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Isa 60:1-6 }\quad{\scriptsize Gospel\ John 1:29-34 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 13 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Commemoration of the Baptism of the Lord }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ White \quad Epistle\ Isa 60:1-6 \quad Gospel\ John 1:29-34 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 14 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par -{\bfseries St. Hilary }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 } -\par{\scriptsize Commemoration\ S. Felicis } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 14 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Hilary }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 2 Tim 4:1-8 \quad Gospel\ Matt 5:13-19 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ S. Felicis } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 15 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par -{\bfseries St. Paul, the First Hermit }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Phil 3:7-12 }\quad{\scriptsize Gospel\ Matt 11:25-30 } -\par{\scriptsize Commemoration\ St. Maur, Abbot } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 15 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Paul, the First Hermit }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Phil 3:7-12 \quad Gospel\ Matt 11:25-30 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Maur, Abbot } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 16 } \;\; {\scriptsize Saturday } \hfill \swatch{licolred}\par -{\bfseries St. Marcellus I }\par -{\scriptsize 3rd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ 1 Pet 5:1-4; 5:10-11. }\quad{\scriptsize Gospel\ Matt 16:13-19 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 16 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Marcellus I }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Red \quad Epistle\ 1 Pet 5:1-4; 5:10-11. \quad Gospel\ Matt 16:13-19 } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w1-4} {\bfseries\large January }\hfill{\small Week 4}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 17 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par -{\bfseries 2nd Sunday after Epiphany }\par -{\scriptsize 2nd Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Rom 12:6-16 }\quad{\scriptsize Gospel\ John 2:1-11 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 17 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries 2nd Sunday after Epiphany }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Green \quad Epistle\ Rom 12:6-16 \quad Gospel\ John 2:1-11 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 18 } \;\; {\scriptsize Monday } \hfill \swatch{licolgreen}\par -{\bfseries Monday of the 2nd Week of the Time after Epiphany }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Rom 12:6-16 }\quad{\scriptsize Gospel\ John 2:1-11 } -\par{\scriptsize Commemoration\ St. Prisca } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 18 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Monday of the 2nd Week of the Time after Epiphany }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ Rom 12:6-16 \quad Gospel\ John 2:1-11 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Prisca } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 19 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolgreen}\par -{\bfseries Tuesday of the 2nd Week of the Time after Epiphany }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Rom 12:6-16 }\quad{\scriptsize Gospel\ John 2:1-11 } -\par{\scriptsize Commemoration\ St. Canute, Martyr }\par{\scriptsize Commemoration\ Sts. Marius, Martha, Audifax \& Abachum } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 19 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Tuesday of the 2nd Week of the Time after Epiphany }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ Rom 12:6-16 \quad Gospel\ John 2:1-11 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Canute, Martyr }\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Sts. Marius, Martha, Audifax \& Abachum } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 20 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolred}\par -{\bfseries Sts. Fabian \& Sebastian }\par -{\scriptsize 3rd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Heb 11:33-39 }\quad{\scriptsize Gospel\ Luke 6:17-23 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 20 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries Sts. Fabian \& Sebastian }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Red \quad Epistle\ Heb 11:33-39 \quad Gospel\ Luke 6:17-23 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 21 } \;\; {\scriptsize Thursday } \hfill \swatch{licolred}\par -{\bfseries St. Agnes }\par -{\scriptsize 3rd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Sir 51:1-8; 51:12 }\quad{\scriptsize Gospel\ Matt 25:1-13. } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 21 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Agnes }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Red \quad Epistle\ Sir 51:1-8; 51:12 \quad Gospel\ Matt 25:1-13. } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 22 } \;\; {\scriptsize Friday } \hfill \swatch{licolred}\par -{\bfseries Sts. Vincent \& Anastasius }\par -{\scriptsize 3rd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Wis 3:1-8 }\quad{\scriptsize Gospel\ Luke 21:9-19 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 22 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries Sts. Vincent \& Anastasius }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Red \quad Epistle\ Wis 3:1-8 \quad Gospel\ Luke 21:9-19 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 23 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par -{\bfseries St. Raymond of Peñafort }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Luke 12:35-40 } -\par{\scriptsize Commemoration\ St. Emerentiana } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 23 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Raymond of Peñafort }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Sir 31:8-11 \quad Gospel\ Luke 12:35-40 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Emerentiana } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w1-5} {\bfseries\large January }\hfill{\small Week 5}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 24 } \;\; {\scriptsize Sunday } \hfill \swatch{licolviolet}\par -{\bfseries Septuagesima Sunday }\par -{\scriptsize 2nd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ 1 Cor. 9:24-27; 10:1-5 }\quad{\scriptsize Gospel\ Matt 20:1-16 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 24 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Septuagesima Sunday }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Violet \quad Epistle\ 1 Cor. 9:24-27; 10:1-5 \quad Gospel\ Matt 20:1-16 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 25 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par -{\bfseries Conversion of St. Paul }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Acts 9:1-22 }\quad{\scriptsize Gospel\ Matt 19:27-29. } -\par{\scriptsize Commemoration\ St. Peter } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 25 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Conversion of St. Paul }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Acts 9:1-22 \quad Gospel\ Matt 19:27-29. } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Peter } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 26 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par -{\bfseries St. Polycarp }\par -{\scriptsize 3rd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ 1 John 3:10-16 }\quad{\scriptsize Gospel\ Matt 10:26-32. } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 26 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Polycarp }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Red \quad Epistle\ 1 John 3:10-16 \quad Gospel\ Matt 10:26-32. } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 27 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par -{\bfseries St. John Chrysostom }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 27 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. John Chrysostom }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 2 Tim 4:1-8 \quad Gospel\ Matt 5:13-19 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 28 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par -{\bfseries St. Peter Nolasco }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 1 Cor. 4:9-14 }\quad{\scriptsize Gospel\ Luke 12:32-34 } -\par{\scriptsize Commemoration\ St. Agnes } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 28 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Peter Nolasco }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 1 Cor. 4:9-14 \quad Gospel\ Luke 12:32-34 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Agnes } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 29 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par -{\bfseries St. Francis de Sales }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 29 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Francis de Sales }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 2 Tim 4:1-8 \quad Gospel\ Matt 5:13-19 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 30 } \;\; {\scriptsize Saturday } \hfill \swatch{licolred}\par -{\bfseries St. Martina }\par -{\scriptsize 3rd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Sir 51:1-8; 51:12 }\quad{\scriptsize Gospel\ Matt 25:1-13. } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 30 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Martina }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Red \quad Epistle\ Sir 51:1-8; 51:12 \quad Gospel\ Matt 25:1-13. } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w1-6} {\bfseries\large January }\hfill{\small Week 6}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 31 } \;\; {\scriptsize Sunday } \hfill \swatch{licolviolet}\par -{\bfseries Sexagesima Sunday }\par -{\scriptsize 2nd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ 2 Cor. 11:19-33; 12:1-9 }\quad{\scriptsize Gospel\ Luke 8:4-15 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 31 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Sexagesima Sunday }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Violet \quad Epistle\ 2 Cor. 11:19-33; 12:1-9 \quad Gospel\ Luke 8:4-15 } \end{tcolorbox} @@ -539,311 +575,297 @@ -\clearpage +\vspace{1mm} + + +\needspace{29mm} +\vspace{2mm}\noindent\rule{\linewidth}{1pt}\par\vspace{0.8mm} +{\LARGE\bfseries February 2027 }\par\vspace{1mm} +\needspace{16mm} \label{w2-1} {\bfseries\large February }\hfill{\small Week 1}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 1 } \;\; {\scriptsize Monday } \hfill \swatch{licolred}\par -{\bfseries St. Ignatius of Antioch }\par -{\scriptsize 3rd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Rom 8:35-39 }\quad{\scriptsize Gospel\ John 12:24-26 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 1 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Ignatius of Antioch }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Red \quad Epistle\ Rom 8:35-39 \quad Gospel\ John 12:24-26 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 2 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par -{\bfseries Purification of the Blessed Virgin Mary }\par -{\scriptsize 2nd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Mal 3:1-4 }\quad{\scriptsize Gospel\ Luke 2:22-32 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 2 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Purification of the Blessed Virgin Mary }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ White \quad Epistle\ Mal 3:1-4 \quad Gospel\ Luke 2:22-32 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 3 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolviolet}\par -{\bfseries Wednesday of the 2nd Week of Septuagesimatide }\par -{\scriptsize 4th Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ 2 Cor. 11:19-33; 12:1-9 }\quad{\scriptsize Gospel\ Luke 8:4-15 } -\par{\scriptsize Commemoration\ St. Blaise } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 3 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Wednesday of the 2nd Week of Septuagesimatide }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Violet \quad Epistle\ 2 Cor. 11:19-33; 12:1-9 \quad Gospel\ Luke 8:4-15 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Blaise } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 4 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par -{\bfseries St. Andrew Corsini }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Sir 44:16-27; 45:3-20 }\quad{\scriptsize Gospel\ Matt 25:14-23 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 4 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Andrew Corsini }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Sir 44:16-27; 45:3-20 \quad Gospel\ Matt 25:14-23 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 5 } \;\; {\scriptsize Friday } \hfill \swatch{licolred}\par -{\bfseries St. Agatha }\par -{\scriptsize 3rd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ 1 Cor. 1:26-31 }\quad{\scriptsize Gospel\ Matt 19:3-12. } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 5 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Agatha }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Red \quad Epistle\ 1 Cor. 1:26-31 \quad Gospel\ Matt 19:3-12. } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 6 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par -{\bfseries St. Titus }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Sir 44:16-27; 45:3-20 }\quad{\scriptsize Gospel\ Luke 10:1-9 } -\par{\scriptsize Commemoration\ St. Dorothy } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 6 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Titus }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Sir 44:16-27; 45:3-20 \quad Gospel\ Luke 10:1-9 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Dorothy } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w2-2} {\bfseries\large February }\hfill{\small Week 2}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 7 } \;\; {\scriptsize Sunday } \hfill \swatch{licolviolet}\par -{\bfseries Quinquagesima Sunday }\par -{\scriptsize 2nd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ 1 Cor. 13:1-13 }\quad{\scriptsize Gospel\ Luke 18:31-43 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 7 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Quinquagesima Sunday }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Violet \quad Epistle\ 1 Cor. 13:1-13 \quad Gospel\ Luke 18:31-43 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 8 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par -{\bfseries St. John of Matha }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Luke 12:35-40 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 8 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. John of Matha }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Sir 31:8-11 \quad Gospel\ Luke 12:35-40 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 9 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par -{\bfseries St. Cyril of Alexandria }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 } -\par{\scriptsize Commemoration\ St. Appollonia } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 9 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Cyril of Alexandria }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 2 Tim 4:1-8 \quad Gospel\ Matt 5:13-19 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Appollonia } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 10 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolviolet}\par -{\bfseries Ash Wednesday }\par -{\scriptsize 1st Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Joel 2:12-19 }\quad{\scriptsize Gospel\ Matt 6:16-21 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 10 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Ash Wednesday }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ Violet \quad Epistle\ Joel 2:12-19 \quad Gospel\ Matt 6:16-21 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 11 } \;\; {\scriptsize Thursday } \hfill \swatch{licolviolet}\par -{\bfseries Thursday after Ash Wednesday }\par -{\scriptsize 3rd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Isa 38:1-6 }\quad{\scriptsize Gospel\ Matt 8:5-13 } -\par{\scriptsize Commemoration\ Our Lady of Lourdes } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 11 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Thursday after Ash Wednesday }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Violet \quad Epistle\ Isa 38:1-6 \quad Gospel\ Matt 8:5-13 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Our Lady of Lourdes } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 12 } \;\; {\scriptsize Friday } \hfill \swatch{licolviolet}\par -{\bfseries Friday after Ash Wednesday }\par -{\scriptsize 3rd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Isa 58:1-9 }\quad{\scriptsize Gospel\ Matt 5:43-48; 6:1-4 } -\par{\scriptsize Commemoration\ Seven Holy Servite Founders } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 12 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Friday after Ash Wednesday }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Violet \quad Epistle\ Isa 58:1-9 \quad Gospel\ Matt 5:43-48; 6:1-4 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Seven Holy Servite Founders } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 13 } \;\; {\scriptsize Saturday } \hfill \swatch{licolviolet}\par -{\bfseries Saturday after Ash Wednesday }\par -{\scriptsize 3rd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Isa 58:9-14 }\quad{\scriptsize Gospel\ Mark 6:47-56 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 13 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Saturday after Ash Wednesday }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Violet \quad Epistle\ Isa 58:9-14 \quad Gospel\ Mark 6:47-56 } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w2-3} {\bfseries\large February }\hfill{\small Week 3}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 14 } \;\; {\scriptsize Sunday } \hfill \swatch{licolviolet}\par -{\bfseries 1st Sunday of Lent }\par -{\scriptsize 1st Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ 2 Cor. 6:1-10 }\quad{\scriptsize Gospel\ Matt 4:1-11 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 14 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries 1st Sunday of Lent }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ Violet \quad Epistle\ 2 Cor. 6:1-10 \quad Gospel\ Matt 4:1-11 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 15 } \;\; {\scriptsize Monday } \hfill \swatch{licolviolet}\par -{\bfseries Monday of the 1st Week of Lent }\par -{\scriptsize 3rd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Ezech 34:11-16 }\quad{\scriptsize Gospel\ Matt 25:31-46 } -\par{\scriptsize Commemoration\ Sts. Faustinus \& Jovita } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 15 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Monday of the 1st Week of Lent }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Violet \quad Epistle\ Ezech 34:11-16 \quad Gospel\ Matt 25:31-46 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Sts. Faustinus \& Jovita } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 16 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolviolet}\par -{\bfseries Tuesday of the 1st Week of Lent }\par -{\scriptsize 3rd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Isa 55:6-11 }\quad{\scriptsize Gospel\ Matt 21:10-17 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 16 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Tuesday of the 1st Week of Lent }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Violet \quad Epistle\ Isa 55:6-11 \quad Gospel\ Matt 21:10-17 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 17 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolviolet}\par -{\bfseries Lenten Ember Wednesday }\par -{\scriptsize 2nd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ 3 Kgs. 19:3-8 }\quad{\scriptsize Gospel\ Matt 12:38-50 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 17 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Lenten Ember Wednesday }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Violet \quad Epistle\ 3 Kgs. 19:3-8 \quad Gospel\ Matt 12:38-50 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 18 } \;\; {\scriptsize Thursday } \hfill \swatch{licolviolet}\par -{\bfseries Thursday of the 1st Week of Lent }\par -{\scriptsize 3rd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Ezech 18:1-9 }\quad{\scriptsize Gospel\ Matt 15:21-28 } -\par{\scriptsize Commemoration\ St. Simeon } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 18 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Thursday of the 1st Week of Lent }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Violet \quad Epistle\ Ezech 18:1-9 \quad Gospel\ Matt 15:21-28 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Simeon } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 19 } \;\; {\scriptsize Friday } \hfill \swatch{licolviolet}\par -{\bfseries Lenten Ember Friday }\par -{\scriptsize 2nd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Ezech 18:20-28 }\quad{\scriptsize Gospel\ John 5:1-15 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 19 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Lenten Ember Friday }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Violet \quad Epistle\ Ezech 18:20-28 \quad Gospel\ John 5:1-15 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 20 } \;\; {\scriptsize Saturday } \hfill \swatch{licolviolet}\par -{\bfseries Lenten Ember Saturday }\par -{\scriptsize 2nd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ 1 Thess. 5:14-23 }\quad{\scriptsize Gospel\ Matt 17:1-9 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 20 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Lenten Ember Saturday }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Violet \quad Epistle\ 1 Thess. 5:14-23 \quad Gospel\ Matt 17:1-9 } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w2-4} {\bfseries\large February }\hfill{\small Week 4}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 21 } \;\; {\scriptsize Sunday } \hfill \swatch{licolviolet}\par -{\bfseries 2nd Sunday of Lent }\par -{\scriptsize 1st Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ 1 Thess. 4:1-7 }\quad{\scriptsize Gospel\ Matt 17:1-9 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 21 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries 2nd Sunday of Lent }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ Violet \quad Epistle\ 1 Thess. 4:1-7 \quad Gospel\ Matt 17:1-9 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 22 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par -{\bfseries Chair of St. Peter }\par -{\scriptsize 2nd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 1 Pet 1:1-7 }\quad{\scriptsize Gospel\ Matt 16:13-19 } -\par{\scriptsize Commemoration\ Monday of the 2nd Week of Lent }\par{\scriptsize Commemoration\ St. Paul } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 22 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Chair of St. Peter }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ White \quad Epistle\ 1 Pet 1:1-7 \quad Gospel\ Matt 16:13-19 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Monday of the 2nd Week of Lent }\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Paul } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 23 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolviolet}\par -{\bfseries Tuesday of the 2nd Week of Lent }\par -{\scriptsize 3rd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ 3 Kings 17:8-16 }\quad{\scriptsize Gospel\ Matt 23:1-12 } -\par{\scriptsize Commemoration\ St. Peter Damien } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 23 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Tuesday of the 2nd Week of Lent }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Violet \quad Epistle\ 3 Kings 17:8-16 \quad Gospel\ Matt 23:1-12 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Peter Damien } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 24 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolred}\par -{\bfseries St. Matthias }\par -{\scriptsize 2nd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Acts 1:15-26 }\quad{\scriptsize Gospel\ Matt 11:25-30 } -\par{\scriptsize Commemoration\ Wednesday of the 2nd Week of Lent } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 24 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Matthias }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Red \quad Epistle\ Acts 1:15-26 \quad Gospel\ Matt 11:25-30 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Wednesday of the 2nd Week of Lent } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 25 } \;\; {\scriptsize Thursday } \hfill \swatch{licolviolet}\par -{\bfseries Thursday of the 2nd Week of Lent }\par -{\scriptsize 3rd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Jer 17:5-10 }\quad{\scriptsize Gospel\ Luke 16:19-31 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 25 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Thursday of the 2nd Week of Lent }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Violet \quad Epistle\ Jer 17:5-10 \quad Gospel\ Luke 16:19-31 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 26 } \;\; {\scriptsize Friday } \hfill \swatch{licolviolet}\par -{\bfseries Friday of the 2nd Week of Lent }\par -{\scriptsize 3rd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Gen 37:6-22 }\quad{\scriptsize Gospel\ Matt 21:33-46 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 26 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Friday of the 2nd Week of Lent }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Violet \quad Epistle\ Gen 37:6-22 \quad Gospel\ Matt 21:33-46 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 27 } \;\; {\scriptsize Saturday } \hfill \swatch{licolviolet}\par -{\bfseries Saturday of the 2nd Week of Lent }\par -{\scriptsize 3rd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Gen 27:6-40 }\quad{\scriptsize Gospel\ Luke 15:11-32 } -\par{\scriptsize Commemoration\ St. Gabriel of Our Lady of Sorrows } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 27 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Saturday of the 2nd Week of Lent }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Violet \quad Epistle\ Gen 27:6-40 \quad Gospel\ Luke 15:11-32 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Gabriel of Our Lady of Sorrows } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w2-5} {\bfseries\large February }\hfill{\small Week 5}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 28 } \;\; {\scriptsize Sunday } \hfill \swatch{licolviolet}\par -{\bfseries 3rd Sunday of Lent }\par -{\scriptsize 1st Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Eph 5:1-9 }\quad{\scriptsize Gospel\ Luke 11:14-28 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 28 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries 3rd Sunday of Lent }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ Violet \quad Epistle\ Eph 5:1-9 \quad Gospel\ Luke 11:14-28 } \end{tcolorbox} @@ -860,341 +882,324 @@ -\clearpage +\vspace{1mm} + +\needspace{29mm} +\vspace{2mm}\noindent\rule{\linewidth}{1pt}\par\vspace{0.8mm} +{\LARGE\bfseries March 2027 }\par\vspace{1mm} + +\needspace{16mm} \label{w3-1} {\bfseries\large March }\hfill{\small Week 1}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 1 } \;\; {\scriptsize Monday } \hfill \swatch{licolviolet}\par -{\bfseries Monday of the 3rd Week of Lent }\par -{\scriptsize 3rd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ 4 Kings 5:1-15 }\quad{\scriptsize Gospel\ Luke 4:23-30 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 1 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Monday of the 3rd Week of Lent }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Violet \quad Epistle\ 4 Kings 5:1-15 \quad Gospel\ Luke 4:23-30 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 2 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolviolet}\par -{\bfseries Tuesday of the 3rd Week of Lent }\par -{\scriptsize 3rd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ 4 Kings 4:1-7 }\quad{\scriptsize Gospel\ Matt 18:15-22 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 2 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Tuesday of the 3rd Week of Lent }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Violet \quad Epistle\ 4 Kings 4:1-7 \quad Gospel\ Matt 18:15-22 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 3 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolviolet}\par -{\bfseries Wednesday of the 3rd Week of Lent }\par -{\scriptsize 3rd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Ex 20:12-24 }\quad{\scriptsize Gospel\ Matt 15:1-20 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 3 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Wednesday of the 3rd Week of Lent }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Violet \quad Epistle\ Ex 20:12-24 \quad Gospel\ Matt 15:1-20 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 4 } \;\; {\scriptsize Thursday } \hfill \swatch{licolviolet}\par -{\bfseries Thursday of the 3rd Week of Lent }\par -{\scriptsize 3rd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Jer 7:1-7 }\quad{\scriptsize Gospel\ Luke 4:38-44. } -\par{\scriptsize Commemoration\ St. Casimir }\par{\scriptsize Commemoration\ St. Lucius } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 4 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Thursday of the 3rd Week of Lent }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Violet \quad Epistle\ Jer 7:1-7 \quad Gospel\ Luke 4:38-44. } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Casimir }\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Lucius } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 5 } \;\; {\scriptsize Friday } \hfill \swatch{licolviolet}\par -{\bfseries Friday of the 3rd Week of Lent }\par -{\scriptsize 3rd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Num 20:1, 3; 6-13. }\quad{\scriptsize Gospel\ John 4:5-42 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 5 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Friday of the 3rd Week of Lent }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Violet \quad Epistle\ Num 20:1, 3; 6-13. \quad Gospel\ John 4:5-42 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 6 } \;\; {\scriptsize Saturday } \hfill \swatch{licolviolet}\par -{\bfseries Saturday of the 3rd Week of Lent }\par -{\scriptsize 3rd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Dan 13:1-9, 15-17, 19-30, 33-62. }\quad{\scriptsize Gospel\ John 8:1-11 } -\par{\scriptsize Commemoration\ Sts. Felicitas \& Perpetua } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 6 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Saturday of the 3rd Week of Lent }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Violet \quad Epistle\ Dan 13:1-9, 15-17, 19-30, 33-62. \quad Gospel\ John 8:1-11 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Sts. Felicitas \& Perpetua } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w3-2} {\bfseries\large March }\hfill{\small Week 2}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 7 } \;\; {\scriptsize Sunday } \hfill \swatch{licolrose}\par -{\bfseries 4th Sunday of Lent }\par -{\scriptsize 1st Class \textperiodcentered\ Rose }\par -{\scriptsize Epistle\ Gal 4:22-31 }\quad{\scriptsize Gospel\ John 6:1-15 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 7 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolrose}\par +{\fontsize{9}{10.2}\selectfont\bfseries 4th Sunday of Lent }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ Rose \quad Epistle\ Gal 4:22-31 \quad Gospel\ John 6:1-15 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 8 } \;\; {\scriptsize Monday } \hfill \swatch{licolviolet}\par -{\bfseries Monday of the 4th Week of Lent }\par -{\scriptsize 3rd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ 3 Kings 3:16-28 }\quad{\scriptsize Gospel\ John 2:13-25 } -\par{\scriptsize Commemoration\ St. John of God } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 8 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Monday of the 4th Week of Lent }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Violet \quad Epistle\ 3 Kings 3:16-28 \quad Gospel\ John 2:13-25 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. John of God } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 9 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolviolet}\par -{\bfseries Tuesday of the 4th Week of Lent }\par -{\scriptsize 3rd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Ex 32:7-14 }\quad{\scriptsize Gospel\ John 7:14-31 } -\par{\scriptsize Commemoration\ St. Frances Rome } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 9 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Tuesday of the 4th Week of Lent }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Violet \quad Epistle\ Ex 32:7-14 \quad Gospel\ John 7:14-31 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Frances Rome } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 10 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolviolet}\par -{\bfseries Wednesday of the 4th Week of Lent }\par -{\scriptsize 3rd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Isa. 1:16-19 }\quad{\scriptsize Gospel\ John 9:1-38 } -\par{\scriptsize Commemoration\ Forty Holy Martyrs of Sebaste } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 10 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Wednesday of the 4th Week of Lent }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Violet \quad Epistle\ Isa. 1:16-19 \quad Gospel\ John 9:1-38 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Forty Holy Martyrs of Sebaste } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 11 } \;\; {\scriptsize Thursday } \hfill \swatch{licolviolet}\par -{\bfseries Thursday of the 4th Week of Lent }\par -{\scriptsize 3rd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ 4 Kings 4:25-38 }\quad{\scriptsize Gospel\ Luke 7:11-16 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 11 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Thursday of the 4th Week of Lent }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Violet \quad Epistle\ 4 Kings 4:25-38 \quad Gospel\ Luke 7:11-16 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 12 } \;\; {\scriptsize Friday } \hfill \swatch{licolviolet}\par -{\bfseries Friday of the 4th Week of Lent }\par -{\scriptsize 3rd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ 3 Kings 17:17-24 }\quad{\scriptsize Gospel\ John 11:1-45 } -\par{\scriptsize Commemoration\ St. Gregory the Great } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 12 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Friday of the 4th Week of Lent }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Violet \quad Epistle\ 3 Kings 17:17-24 \quad Gospel\ John 11:1-45 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Gregory the Great } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 13 } \;\; {\scriptsize Saturday } \hfill \swatch{licolviolet}\par -{\bfseries Saturday of the 4th Week of Lent }\par -{\scriptsize 3rd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Isa 49:8-15 }\quad{\scriptsize Gospel\ John 8:12-20 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 13 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Saturday of the 4th Week of Lent }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Violet \quad Epistle\ Isa 49:8-15 \quad Gospel\ John 8:12-20 } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w3-3} {\bfseries\large March }\hfill{\small Week 3}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 14 } \;\; {\scriptsize Sunday } \hfill \swatch{licolviolet}\par -{\bfseries Passion Sunday }\par -{\scriptsize 1st Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Heb 9:11-15. }\quad{\scriptsize Gospel\ John 8:46-59. } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 14 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Passion Sunday }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ Violet \quad Epistle\ Heb 9:11-15. \quad Gospel\ John 8:46-59. } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 15 } \;\; {\scriptsize Monday } \hfill \swatch{licolviolet}\par -{\bfseries Monday of the 1st Week of Passion Week }\par -{\scriptsize 3rd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Jonas 3:1-10 }\quad{\scriptsize Gospel\ John 7:32-39 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 15 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Monday of the 1st Week of Passion Week }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Violet \quad Epistle\ Jonas 3:1-10 \quad Gospel\ John 7:32-39 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 16 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolviolet}\par -{\bfseries Tuesday of the 1st Week of Passion Week }\par -{\scriptsize 3rd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Dan 14:27, 28-42 }\quad{\scriptsize Gospel\ John 7:1-13 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 16 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Tuesday of the 1st Week of Passion Week }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Violet \quad Epistle\ Dan 14:27, 28-42 \quad Gospel\ John 7:1-13 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 17 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolviolet}\par -{\bfseries Wednesday of the 1st Week of Passion Week }\par -{\scriptsize 3rd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Lev 19:1-2, 11-19, 25 }\quad{\scriptsize Gospel\ John 10:22-38 } -\par{\scriptsize Commemoration\ St. Patrick } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 17 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Wednesday of the 1st Week of Passion Week }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Violet \quad Epistle\ Lev 19:1-2, 11-19, 25 \quad Gospel\ John 10:22-38 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Patrick } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 18 } \;\; {\scriptsize Thursday } \hfill \swatch{licolviolet}\par -{\bfseries Thursday of the 1st Week of Passion Week }\par -{\scriptsize 3rd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Dan 3:25, 34-45. }\quad{\scriptsize Gospel\ Luke 7:36-50 } -\par{\scriptsize Commemoration\ St. Cyril of Jerusalem } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 18 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Thursday of the 1st Week of Passion Week }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Violet \quad Epistle\ Dan 3:25, 34-45. \quad Gospel\ Luke 7:36-50 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Cyril of Jerusalem } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 19 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par -{\bfseries St. Joseph, Spouse of the Bl. Virgin Mary }\par -{\scriptsize 1st Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Ecclus 45:1-6 }\quad{\scriptsize Gospel\ Matt 1:18-21 } -\par{\scriptsize Commemoration\ Friday of the 1st Week of Passion Week } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 19 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Joseph, Spouse of the Bl. Virgin Mary }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ White \quad Epistle\ Ecclus 45:1-6 \quad Gospel\ Matt 1:18-21 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Friday of the 1st Week of Passion Week } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 20 } \;\; {\scriptsize Saturday } \hfill \swatch{licolviolet}\par -{\bfseries Saturday of the 1st Week of Passion Week }\par -{\scriptsize 3rd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Jer 18:18-23 }\quad{\scriptsize Gospel\ John 12:10-36 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 20 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Saturday of the 1st Week of Passion Week }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Violet \quad Epistle\ Jer 18:18-23 \quad Gospel\ John 12:10-36 } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w3-4} {\bfseries\large March }\hfill{\small Week 4}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 21 } \;\; {\scriptsize Sunday } \hfill \swatch{licolviolet}\par -{\bfseries Palm Sunday }\par -{\scriptsize 1st Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Phil 2:5-11 }\quad{\scriptsize Gospel\ Matt. 26:36-75; 27:1-60. } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 21 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Palm Sunday }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ Violet \quad Epistle\ Phil 2:5-11 \quad Gospel\ Matt. 26:36-75; 27:1-60. } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 22 } \;\; {\scriptsize Monday } \hfill \swatch{licolviolet}\par -{\bfseries Monday of Holy Week }\par -{\scriptsize 1st Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Isa 50:5-10 }\quad{\scriptsize Gospel\ John 12:1-9 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 22 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Monday of Holy Week }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ Violet \quad Epistle\ Isa 50:5-10 \quad Gospel\ John 12:1-9 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 23 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolviolet}\par -{\bfseries Tuesday of Holy Week }\par -{\scriptsize 1st Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Jer 11:18-20 }\quad{\scriptsize Gospel\ Mark 14:32-72; 15, 1-46 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 23 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Tuesday of Holy Week }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ Violet \quad Epistle\ Jer 11:18-20 \quad Gospel\ Mark 14:32-72; 15, 1-46 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 24 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolviolet}\par -{\bfseries Wednesday of Holy Week (Spy Wednesday) }\par -{\scriptsize 1st Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Isa 53:1-12 }\quad{\scriptsize Gospel\ Luke 22:39-71; 23:1-53 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 24 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Wednesday of Holy Week (Spy Wednesday) }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ Violet \quad Epistle\ Isa 53:1-12 \quad Gospel\ Luke 22:39-71; 23:1-53 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 25 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par -{\bfseries Holy Thursday (Maundy Thursday) }\par -{\scriptsize 1st Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 1 Cor 11:20-32 }\quad{\scriptsize Gospel\ John 13:1-15 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 25 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Holy Thursday (Maundy Thursday) }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ White \quad Epistle\ 1 Cor 11:20-32 \quad Gospel\ John 13:1-15 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 26 } \;\; {\scriptsize Friday } \hfill \swatch{licolblack}\par -{\bfseries Good Friday }\par -{\scriptsize 1st Class \textperiodcentered\ Black }\par -{\scriptsize Epistle\ Ex 12:1-11 }\quad{\scriptsize Gospel\ John 18:1-40; 19:1-42 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 26 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolblack}\par +{\fontsize{9}{10.2}\selectfont\bfseries Good Friday }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ Black \quad Epistle\ Ex 12:1-11 \quad Gospel\ John 18:1-40; 19:1-42 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 27 } \;\; {\scriptsize Saturday } \hfill \swatch{licolviolet}\par -{\bfseries Holy Saturday }\par -{\scriptsize 1st Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Col 3:1-4 }\quad{\scriptsize Gospel\ Matt 28:1-7 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 27 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Holy Saturday }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ Violet \quad Epistle\ Col 3:1-4 \quad Gospel\ Matt 28:1-7 } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w3-5} {\bfseries\large March }\hfill{\small Week 5}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 28 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par -{\bfseries Easter Sunday }\par -{\scriptsize 1st Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 1 Cor 5:7-8 }\quad{\scriptsize Gospel\ Mark 16:1-7 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 28 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Easter Sunday }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ White \quad Epistle\ 1 Cor 5:7-8 \quad Gospel\ Mark 16:1-7 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 29 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par -{\bfseries Monday of Easter Week }\par -{\scriptsize 1st Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Acts 10:37-43. }\quad{\scriptsize Gospel\ Luke 24:13-35 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 29 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Monday of Easter Week }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ White \quad Epistle\ Acts 10:37-43. \quad Gospel\ Luke 24:13-35 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 30 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par -{\bfseries Tuesday of Easter Week }\par -{\scriptsize 1st Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Acts 13:16; 13:26-33 }\quad{\scriptsize Gospel\ Luke 24:36-47 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 30 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Tuesday of Easter Week }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ White \quad Epistle\ Acts 13:16; 13:26-33 \quad Gospel\ Luke 24:36-47 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 31 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par -{\bfseries Wednesday of Easter Week }\par -{\scriptsize 1st Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Acts 3:13-15; 3:17-19 }\quad{\scriptsize Gospel\ John 21:1-14 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 31 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Wednesday of Easter Week }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ White \quad Epistle\ Acts 3:13-15; 3:17-19 \quad Gospel\ John 21:1-14 } \end{tcolorbox} @@ -1205,10 +1210,16 @@ -\clearpage +\vspace{1mm} + +\needspace{29mm} +\vspace{2mm}\noindent\rule{\linewidth}{1pt}\par\vspace{0.8mm} +{\LARGE\bfseries April 2027 }\par\vspace{1mm} + +\needspace{16mm} \label{w4-1} {\bfseries\large April }\hfill{\small Week 1}\par\vspace{0.5mm} @@ -1221,331 +1232,315 @@ -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 1 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par -{\bfseries Thursday of Easter Week }\par -{\scriptsize 1st Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Acts 8:26-40 }\quad{\scriptsize Gospel\ John 20:11-18 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 1 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Thursday of Easter Week }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ White \quad Epistle\ Acts 8:26-40 \quad Gospel\ John 20:11-18 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 2 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par -{\bfseries Friday of Easter Week }\par -{\scriptsize 1st Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 1 Pet 3:18-22 }\quad{\scriptsize Gospel\ Matt 28:16-20 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 2 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Friday of Easter Week }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ White \quad Epistle\ 1 Pet 3:18-22 \quad Gospel\ Matt 28:16-20 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 3 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par -{\bfseries Saturday of Easter Week }\par -{\scriptsize 1st Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 1 Pet 2:1-10 }\quad{\scriptsize Gospel\ John 20:1-9 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 3 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Saturday of Easter Week }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ White \quad Epistle\ 1 Pet 2:1-10 \quad Gospel\ John 20:1-9 } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w4-2} {\bfseries\large April }\hfill{\small Week 2}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 4 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par -{\bfseries Low Sunday (Sunday in Easter Octave) }\par -{\scriptsize 1st Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 1 John 5:4-10 }\quad{\scriptsize Gospel\ John 20:19-31 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 4 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Low Sunday (Sunday in Easter Octave) }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ White \quad Epistle\ 1 John 5:4-10 \quad Gospel\ John 20:19-31 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 5 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par -{\bfseries Annunciation of the Blessed Virgin Mary }\par -{\scriptsize 1st Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Isa 7:10-15 }\quad{\scriptsize Gospel\ Luke 1:26-38 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 5 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Annunciation of the Blessed Virgin Mary }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ White \quad Epistle\ Isa 7:10-15 \quad Gospel\ Luke 1:26-38 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 6 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par -{\bfseries Tuesday of the 2nd Week of Eastertide }\par -{\scriptsize 4th Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 1 John 5:4-10 }\quad{\scriptsize Gospel\ John 20:19-31 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 6 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Tuesday of the 2nd Week of Eastertide }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ White \quad Epistle\ 1 John 5:4-10 \quad Gospel\ John 20:19-31 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 7 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par -{\bfseries Wednesday of the 2nd Week of Eastertide }\par -{\scriptsize 4th Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 1 John 5:4-10 }\quad{\scriptsize Gospel\ John 20:19-31 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 7 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Wednesday of the 2nd Week of Eastertide }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ White \quad Epistle\ 1 John 5:4-10 \quad Gospel\ John 20:19-31 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 8 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par -{\bfseries Thursday of the 2nd Week of Eastertide }\par -{\scriptsize 4th Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 1 John 5:4-10 }\quad{\scriptsize Gospel\ John 20:19-31 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 8 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Thursday of the 2nd Week of Eastertide }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ White \quad Epistle\ 1 John 5:4-10 \quad Gospel\ John 20:19-31 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 9 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par -{\bfseries Friday of the 2nd Week of Eastertide }\par -{\scriptsize 4th Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 1 John 5:4-10 }\quad{\scriptsize Gospel\ John 20:19-31 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 9 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Friday of the 2nd Week of Eastertide }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ White \quad Epistle\ 1 John 5:4-10 \quad Gospel\ John 20:19-31 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 10 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par -{\bfseries Our Lady's Saturday Office }\par -{\scriptsize 4th Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Ecclus 24:14-16 }\quad{\scriptsize Gospel\ John 19:25-27 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 10 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Our Lady's Saturday Office }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ White \quad Epistle\ Ecclus 24:14-16 \quad Gospel\ John 19:25-27 } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w4-3} {\bfseries\large April }\hfill{\small Week 3}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 11 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par -{\bfseries 2nd Sunday after Easter }\par -{\scriptsize 2nd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 1 Pet 2:21-25 }\quad{\scriptsize Gospel\ John 10:11-16 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 11 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries 2nd Sunday after Easter }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ White \quad Epistle\ 1 Pet 2:21-25 \quad Gospel\ John 10:11-16 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 12 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par -{\bfseries Monday of the 3rd Week of Eastertide }\par -{\scriptsize 4th Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 1 Pet 2:21-25 }\quad{\scriptsize Gospel\ John 10:11-16 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 12 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Monday of the 3rd Week of Eastertide }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ White \quad Epistle\ 1 Pet 2:21-25 \quad Gospel\ John 10:11-16 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 13 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par -{\bfseries St. Hermenegild }\par -{\scriptsize 3rd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Wis 10:10-14 }\quad{\scriptsize Gospel\ Luke 14:26-33. } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 13 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Hermenegild }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Red \quad Epistle\ Wis 10:10-14 \quad Gospel\ Luke 14:26-33. } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 14 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolred}\par -{\bfseries St. Justin }\par -{\scriptsize 3rd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ 1 Cor 1:18-25; 1:30; }\quad{\scriptsize Gospel\ Luke 12:2-8 } -\par{\scriptsize Commemoration\ Sts. Tiburtius, Valerian et Maximus, Martyrs } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 14 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Justin }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Red \quad Epistle\ 1 Cor 1:18-25; 1:30; \quad Gospel\ Luke 12:2-8 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Sts. Tiburtius, Valerian et Maximus, Martyrs } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 15 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par -{\bfseries Thursday of the 3rd Week of Eastertide }\par -{\scriptsize 4th Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 1 Pet 2:21-25 }\quad{\scriptsize Gospel\ John 10:11-16 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 15 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Thursday of the 3rd Week of Eastertide }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ White \quad Epistle\ 1 Pet 2:21-25 \quad Gospel\ John 10:11-16 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 16 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par -{\bfseries Friday of the 3rd Week of Eastertide }\par -{\scriptsize 4th Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 1 Pet 2:21-25 }\quad{\scriptsize Gospel\ John 10:11-16 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 16 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Friday of the 3rd Week of Eastertide }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ White \quad Epistle\ 1 Pet 2:21-25 \quad Gospel\ John 10:11-16 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 17 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par -{\bfseries Our Lady's Saturday Office }\par -{\scriptsize 4th Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Ecclus 24:14-16 }\quad{\scriptsize Gospel\ John 19:25-27 } -\par{\scriptsize Commemoration\ St. Anicetus } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 17 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Our Lady's Saturday Office }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ White \quad Epistle\ Ecclus 24:14-16 \quad Gospel\ John 19:25-27 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Anicetus } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w4-4} {\bfseries\large April }\hfill{\small Week 4}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 18 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par -{\bfseries 3rd Sunday after Easter }\par -{\scriptsize 2nd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 1 Pet 2:11-19 }\quad{\scriptsize Gospel\ John 16:16-22 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 18 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries 3rd Sunday after Easter }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ White \quad Epistle\ 1 Pet 2:11-19 \quad Gospel\ John 16:16-22 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 19 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par -{\bfseries Monday of the 4th Week of Eastertide }\par -{\scriptsize 4th Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 1 Pet 2:11-19 }\quad{\scriptsize Gospel\ John 16:16-22 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 19 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Monday of the 4th Week of Eastertide }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ White \quad Epistle\ 1 Pet 2:11-19 \quad Gospel\ John 16:16-22 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 20 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par -{\bfseries Tuesday of the 4th Week of Eastertide }\par -{\scriptsize 4th Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 1 Pet 2:11-19 }\quad{\scriptsize Gospel\ John 16:16-22 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 20 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Tuesday of the 4th Week of Eastertide }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ White \quad Epistle\ 1 Pet 2:11-19 \quad Gospel\ John 16:16-22 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 21 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par -{\bfseries St. Anselm }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 21 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Anselm }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 2 Tim 4:1-8 \quad Gospel\ Matt 5:13-19 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 22 } \;\; {\scriptsize Thursday } \hfill \swatch{licolred}\par -{\bfseries Sts. Soter \& Caius }\par -{\scriptsize 3rd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ 1 Pet 5:1-4; 5:10-11. }\quad{\scriptsize Gospel\ Matt 16:13-19 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 22 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries Sts. Soter \& Caius }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Red \quad Epistle\ 1 Pet 5:1-4; 5:10-11. \quad Gospel\ Matt 16:13-19 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 23 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par -{\bfseries Friday of the 4th Week of Eastertide }\par -{\scriptsize 4th Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 1 Pet 2:11-19 }\quad{\scriptsize Gospel\ John 16:16-22 } -\par{\scriptsize Commemoration\ St. George } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 23 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Friday of the 4th Week of Eastertide }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ White \quad Epistle\ 1 Pet 2:11-19 \quad Gospel\ John 16:16-22 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. George } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 24 } \;\; {\scriptsize Saturday } \hfill \swatch{licolred}\par -{\bfseries St. Fidelis of Sigmaringen }\par -{\scriptsize 3rd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Wis 5:1-5 }\quad{\scriptsize Gospel\ John 15:1-7 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 24 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Fidelis of Sigmaringen }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Red \quad Epistle\ Wis 5:1-5 \quad Gospel\ John 15:1-7 } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w4-5} {\bfseries\large April }\hfill{\small Week 5}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 25 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par -{\bfseries 4th Sunday after Easter }\par -{\scriptsize 2nd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Jas 1:17-21 }\quad{\scriptsize Gospel\ John 16:5-14 } -\par{\scriptsize Commemoration\ The Major Litanies } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 25 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries 4th Sunday after Easter }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ White \quad Epistle\ Jas 1:17-21 \quad Gospel\ John 16:5-14 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ The Major Litanies } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 26 } \;\; {\scriptsize Monday } \hfill \swatch{licolred}\par -{\bfseries Sts. Cletus \& Marcellinus }\par -{\scriptsize 3rd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ 1 Pet 5:1-4; 5:10-11. }\quad{\scriptsize Gospel\ Matt 16:13-19 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 26 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries Sts. Cletus \& Marcellinus }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Red \quad Epistle\ 1 Pet 5:1-4; 5:10-11. \quad Gospel\ Matt 16:13-19 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 27 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par -{\bfseries St. Peter Canisius }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 27 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Peter Canisius }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 2 Tim 4:1-8 \quad Gospel\ Matt 5:13-19 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 28 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par -{\bfseries St. Paul of the Cross }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 1 Cor 1:17-25. }\quad{\scriptsize Gospel\ Luke 10:1-9 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 28 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Paul of the Cross }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 1 Cor 1:17-25. \quad Gospel\ Luke 10:1-9 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 29 } \;\; {\scriptsize Thursday } \hfill \swatch{licolred}\par -{\bfseries St. Peter of Verona }\par -{\scriptsize 3rd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ 2 Tim. 2:8-10; 3:10-12. }\quad{\scriptsize Gospel\ Matt 10:34-42 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 29 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Peter of Verona }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Red \quad Epistle\ 2 Tim. 2:8-10; 3:10-12. \quad Gospel\ Matt 10:34-42 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 30 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par -{\bfseries St. Catherine of Siena }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 2 Cor 10:17-18; 11:1-2 }\quad{\scriptsize Gospel\ Matt 25:1-13. } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 30 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Catherine of Siena }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 2 Cor 10:17-18; 11:1-2 \quad Gospel\ Matt 25:1-13. } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{29mm} +\vspace{2mm}\noindent\rule{\linewidth}{1pt}\par\vspace{0.8mm} +{\LARGE\bfseries May 2027 }\par\vspace{1mm} + +\needspace{16mm} \label{w5-1} {\bfseries\large May }\hfill{\small Week 1}\par\vspace{0.5mm} @@ -1562,337 +1557,316 @@ -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 1 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par -{\bfseries St. Joseph the Workman }\par -{\scriptsize 1st Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Col. 3:14-15, 17, 23-24 }\quad{\scriptsize Gospel\ Matt 13:54-58 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 1 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Joseph the Workman }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ White \quad Epistle\ Col. 3:14-15, 17, 23-24 \quad Gospel\ Matt 13:54-58 } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w5-2} {\bfseries\large May }\hfill{\small Week 2}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 2 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par -{\bfseries 5th Sunday after Easter }\par -{\scriptsize 2nd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Jas 1:22-27 }\quad{\scriptsize Gospel\ John 16:23-30 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 2 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries 5th Sunday after Easter }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ White \quad Epistle\ Jas 1:22-27 \quad Gospel\ John 16:23-30 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 3 } \;\; {\scriptsize Monday } \hfill \swatch{licolviolet}\par -{\bfseries Rogation Monday }\par -{\scriptsize 4th Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Jas 1:22-27 }\quad{\scriptsize Gospel\ John 16:23-30 } -\par{\scriptsize Commemoration\ Sts. Alexander \& Companions } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 3 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Rogation Monday }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Violet \quad Epistle\ Jas 1:22-27 \quad Gospel\ John 16:23-30 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Sts. Alexander \& Companions } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 4 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par -{\bfseries St. Monica }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 1 Tim. 5:3-10. }\quad{\scriptsize Gospel\ Luke 7:11-16 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 4 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Monica }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 1 Tim. 5:3-10. \quad Gospel\ Luke 7:11-16 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 5 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par -{\bfseries Vigil of the Ascension }\par -{\scriptsize 2nd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Eph. 4:7-13. }\quad{\scriptsize Gospel\ John 17:1-11. } -\par{\scriptsize Commemoration\ St. Pius V } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 5 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Vigil of the Ascension }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ White \quad Epistle\ Eph. 4:7-13. \quad Gospel\ John 17:1-11. } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Pius V } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 6 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par -{\bfseries The Ascension of Our Lord }\par -{\scriptsize 1st Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Acts 1:1-11 }\quad{\scriptsize Gospel\ Mark 16:14-20 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 6 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries The Ascension of Our Lord }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ White \quad Epistle\ Acts 1:1-11 \quad Gospel\ Mark 16:14-20 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 7 } \;\; {\scriptsize Friday } \hfill \swatch{licolred}\par -{\bfseries St. Stanislaus }\par -{\scriptsize 3rd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Wis 5:1-5 }\quad{\scriptsize Gospel\ John 15:1-7 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 7 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Stanislaus }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Red \quad Epistle\ Wis 5:1-5 \quad Gospel\ John 15:1-7 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 8 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par -{\bfseries Our Lady's Saturday Office }\par -{\scriptsize 4th Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Ecclus 24:14-16 }\quad{\scriptsize Gospel\ John 19:25-27 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 8 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Our Lady's Saturday Office }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ White \quad Epistle\ Ecclus 24:14-16 \quad Gospel\ John 19:25-27 } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w5-3} {\bfseries\large May }\hfill{\small Week 3}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 9 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par -{\bfseries Sunday after the Ascension }\par -{\scriptsize 2nd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 1 Pet 4:7-11. }\quad{\scriptsize Gospel\ John 15:26-27; 16:1-4. } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 9 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Sunday after the Ascension }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ White \quad Epistle\ 1 Pet 4:7-11. \quad Gospel\ John 15:26-27; 16:1-4. } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 10 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par -{\bfseries St. Antoninus }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Sir 44:16-27; 45:3-20 }\quad{\scriptsize Gospel\ Matt 25:14-23 } -\par{\scriptsize Commemoration\ St. Gordiano and Epimacho } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 10 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Antoninus }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Sir 44:16-27; 45:3-20 \quad Gospel\ Matt 25:14-23 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Gordiano and Epimacho } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 11 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par -{\bfseries Sts. Philip \& James }\par -{\scriptsize 2nd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Wis. 5:1-5 }\quad{\scriptsize Gospel\ John 14:1-13 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 11 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries Sts. Philip \& James }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Red \quad Epistle\ Wis. 5:1-5 \quad Gospel\ John 14:1-13 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 12 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolred}\par -{\bfseries Sts. Nereus, Achilleus, Domitilla, \& Pancras }\par -{\scriptsize 3rd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Wis. 5:1-5 }\quad{\scriptsize Gospel\ John 4:46-53 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 12 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries Sts. Nereus, Achilleus, Domitilla, \& Pancras }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Red \quad Epistle\ Wis. 5:1-5 \quad Gospel\ John 4:46-53 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 13 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par -{\bfseries St. Robert Bellarmine }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Wis 7:7-14. }\quad{\scriptsize Gospel\ Matt 5:13-19 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 13 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Robert Bellarmine }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Wis 7:7-14. \quad Gospel\ Matt 5:13-19 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 14 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par -{\bfseries Friday of the 7th Week of Eastertide }\par -{\scriptsize 4th Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 1 Pet 4:7-11. }\quad{\scriptsize Gospel\ John 15:26-27; 16:1-4. } -\par{\scriptsize Commemoration\ St. Boniface } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 14 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Friday of the 7th Week of Eastertide }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ White \quad Epistle\ 1 Pet 4:7-11. \quad Gospel\ John 15:26-27; 16:1-4. } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Boniface } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 15 } \;\; {\scriptsize Saturday } \hfill \swatch{licolred}\par -{\bfseries Vigil of Pentecost }\par -{\scriptsize 1st Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Acts 19:1-8. }\quad{\scriptsize Gospel\ John 14:15-21. } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 15 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries Vigil of Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ Red \quad Epistle\ Acts 19:1-8. \quad Gospel\ John 14:15-21. } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w5-4} {\bfseries\large May }\hfill{\small Week 4}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 16 } \;\; {\scriptsize Sunday } \hfill \swatch{licolred}\par -{\bfseries Pentecost Sunday (Whitsunday) }\par -{\scriptsize 1st Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Acts 2:1-11. }\quad{\scriptsize Gospel\ John 14:23-31. } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 16 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries Pentecost Sunday (Whitsunday) }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ Red \quad Epistle\ Acts 2:1-11. \quad Gospel\ John 14:23-31. } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 17 } \;\; {\scriptsize Monday } \hfill \swatch{licolred}\par -{\bfseries Monday of Pentecost Week }\par -{\scriptsize 1st Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Acts 10:34, 42-48 }\quad{\scriptsize Gospel\ John 3:16-21 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 17 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries Monday of Pentecost Week }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ Red \quad Epistle\ Acts 10:34, 42-48 \quad Gospel\ John 3:16-21 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 18 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par -{\bfseries Tuesday of Pentecost Week }\par -{\scriptsize 1st Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Acts 8:14-17. }\quad{\scriptsize Gospel\ John 10:1-10. } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 18 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries Tuesday of Pentecost Week }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ Red \quad Epistle\ Acts 8:14-17. \quad Gospel\ John 10:1-10. } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 19 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolred}\par -{\bfseries Pentecost Ember Wednesday }\par -{\scriptsize 1st Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Acts 5:12-16 }\quad{\scriptsize Gospel\ John 6:44-52. } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 19 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries Pentecost Ember Wednesday }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ Red \quad Epistle\ Acts 5:12-16 \quad Gospel\ John 6:44-52. } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 20 } \;\; {\scriptsize Thursday } \hfill \swatch{licolred}\par -{\bfseries Thursday of Pentecost Week }\par -{\scriptsize 1st Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Acts 8:5-8 }\quad{\scriptsize Gospel\ Luke 9:1-6 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 20 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries Thursday of Pentecost Week }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ Red \quad Epistle\ Acts 8:5-8 \quad Gospel\ Luke 9:1-6 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 21 } \;\; {\scriptsize Friday } \hfill \swatch{licolred}\par -{\bfseries Pentecost Ember Friday }\par -{\scriptsize 1st Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Joel 2:23-24; 26-27 }\quad{\scriptsize Gospel\ Luke 5:17-26 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 21 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries Pentecost Ember Friday }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ Red \quad Epistle\ Joel 2:23-24; 26-27 \quad Gospel\ Luke 5:17-26 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 22 } \;\; {\scriptsize Saturday } \hfill \swatch{licolred}\par -{\bfseries Pentecost Ember Saturday }\par -{\scriptsize 1st Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Rom 5:1-5. }\quad{\scriptsize Gospel\ Luke 4:38-44. } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 22 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries Pentecost Ember Saturday }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ Red \quad Epistle\ Rom 5:1-5. \quad Gospel\ Luke 4:38-44. } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w5-5} {\bfseries\large May }\hfill{\small Week 5}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 23 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par -{\bfseries Trinity Sunday }\par -{\scriptsize 1st Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Rom 11:33-36. }\quad{\scriptsize Gospel\ Matt 28:18-20 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 23 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Trinity Sunday }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ White \quad Epistle\ Rom 11:33-36. \quad Gospel\ Matt 28:18-20 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 24 } \;\; {\scriptsize Monday } \hfill \swatch{licolgreen}\par -{\bfseries Monday of the 1st Week of the Time after Pentecost }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ 1 John 4:8-21 }\quad{\scriptsize Gospel\ Luke 6:36-42 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 24 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Monday of the 1st Week of the Time after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ 1 John 4:8-21 \quad Gospel\ Luke 6:36-42 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 25 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par -{\bfseries St. Gregory VII }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 1 Pet 5:1-4; 5:10-11. }\quad{\scriptsize Gospel\ Matt 16:13-19 } -\par{\scriptsize Commemoration\ St. Urban, Pope and Martyr } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 25 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Gregory VII }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 1 Pet 5:1-4; 5:10-11. \quad Gospel\ Matt 16:13-19 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Urban, Pope and Martyr } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 26 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par -{\bfseries St. Philip Neri }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Wis 7:7-14. }\quad{\scriptsize Gospel\ Luke 12:35-40 } -\par{\scriptsize Commemoration\ S. Eleutherius } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 26 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Philip Neri }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Wis 7:7-14. \quad Gospel\ Luke 12:35-40 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ S. Eleutherius } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 27 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par -{\bfseries Corpus Christi }\par -{\scriptsize 1st Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 1 Cor 11:23-29 }\quad{\scriptsize Gospel\ John 6:56-59 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 27 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Corpus Christi }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ White \quad Epistle\ 1 Cor 11:23-29 \quad Gospel\ John 6:56-59 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 28 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par -{\bfseries St. Augustine of Canterbury }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 1 Thess 2:2-9 }\quad{\scriptsize Gospel\ Luke 10:1-9 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 28 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Augustine of Canterbury }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 1 Thess 2:2-9 \quad Gospel\ Luke 10:1-9 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 29 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par -{\bfseries St. Mary Magdalene de Pazzi }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 2 Cor 10:17-18; 11:1-2 }\quad{\scriptsize Gospel\ Matt 25:1-13. } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 29 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Mary Magdalene de Pazzi }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 2 Cor 10:17-18; 11:1-2 \quad Gospel\ Matt 25:1-13. } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w5-6} {\bfseries\large May }\hfill{\small Week 6}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 30 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par -{\bfseries 2nd Sunday after Pentecost }\par -{\scriptsize 2nd Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ 1 John 3:13-18. }\quad{\scriptsize Gospel\ Luke 14:16-24. } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 30 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries 2nd Sunday after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Green \quad Epistle\ 1 John 3:13-18. \quad Gospel\ Luke 14:16-24. } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 31 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par -{\bfseries Queenship of the Blessed Virgin Mary }\par -{\scriptsize 2nd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Eccli 24:5; 14:7; 14:9-11; 24:30-31 }\quad{\scriptsize Gospel\ Luke 1:26-33 } -\par{\scriptsize Commemoration\ St. Petronilla } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 31 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Queenship of the Blessed Virgin Mary }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ White \quad Epistle\ Eccli 24:5; 14:7; 14:9-11; 24:30-31 \quad Gospel\ Luke 1:26-33 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Petronilla } \end{tcolorbox} @@ -1906,10 +1880,16 @@ -\clearpage +\vspace{1mm} + +\needspace{29mm} +\vspace{2mm}\noindent\rule{\linewidth}{1pt}\par\vspace{0.8mm} +{\LARGE\bfseries June 2027 }\par\vspace{1mm} + +\needspace{16mm} \label{w6-1} {\bfseries\large June }\hfill{\small Week 1}\par\vspace{0.5mm} @@ -1918,322 +1898,300 @@ -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 1 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par -{\bfseries St. Angela Merici }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 2 Cor 10:17-18; 11:1-2 }\quad{\scriptsize Gospel\ Matt 25:1-13. } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 1 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Angela Merici }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 2 Cor 10:17-18; 11:1-2 \quad Gospel\ Matt 25:1-13. } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 2 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolgreen}\par -{\bfseries Wednesday of the 2nd Week of the Time after Pentecost }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ 1 John 3:13-18. }\quad{\scriptsize Gospel\ Luke 14:16-24. } -\par{\scriptsize Commemoration\ Sts. Marcellinus, Peter, \& Erasmus } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 2 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Wednesday of the 2nd Week of the Time after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ 1 John 3:13-18. \quad Gospel\ Luke 14:16-24. } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Sts. Marcellinus, Peter, \& Erasmus } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 3 } \;\; {\scriptsize Thursday } \hfill \swatch{licolgreen}\par -{\bfseries Thursday of the 2nd Week of the Time after Pentecost }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ 1 John 3:13-18. }\quad{\scriptsize Gospel\ Luke 14:16-24. } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 3 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Thursday of the 2nd Week of the Time after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ 1 John 3:13-18. \quad Gospel\ Luke 14:16-24. } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 4 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par -{\bfseries The Sacred Heart of Jesus }\par -{\scriptsize 1st Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Eph 3:8-12, 14-19 }\quad{\scriptsize Gospel\ John 19:31-37 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 4 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries The Sacred Heart of Jesus }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ White \quad Epistle\ Eph 3:8-12, 14-19 \quad Gospel\ John 19:31-37 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 5 } \;\; {\scriptsize Saturday } \hfill \swatch{licolred}\par -{\bfseries St. Boniface }\par -{\scriptsize 3rd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Ecclus 44:1-15 }\quad{\scriptsize Gospel\ Matt 5:1-12 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 5 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Boniface }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Red \quad Epistle\ Ecclus 44:1-15 \quad Gospel\ Matt 5:1-12 } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w6-2} {\bfseries\large June }\hfill{\small Week 2}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 6 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par -{\bfseries 3rd Sunday after Pentecost }\par -{\scriptsize 2nd Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ 1 Pet. 5:6-11 }\quad{\scriptsize Gospel\ Luke 15:1-10 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 6 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries 3rd Sunday after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Green \quad Epistle\ 1 Pet. 5:6-11 \quad Gospel\ Luke 15:1-10 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 7 } \;\; {\scriptsize Monday } \hfill \swatch{licolgreen}\par -{\bfseries Monday of the 3rd Week of the Time after Pentecost }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ 1 Pet. 5:6-11 }\quad{\scriptsize Gospel\ Luke 15:1-10 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 7 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Monday of the 3rd Week of the Time after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ 1 Pet. 5:6-11 \quad Gospel\ Luke 15:1-10 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 8 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolgreen}\par -{\bfseries Tuesday of the 3rd Week of the Time after Pentecost }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ 1 Pet. 5:6-11 }\quad{\scriptsize Gospel\ Luke 15:1-10 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 8 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Tuesday of the 3rd Week of the Time after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ 1 Pet. 5:6-11 \quad Gospel\ Luke 15:1-10 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 9 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolgreen}\par -{\bfseries Wednesday of the 3rd Week of the Time after Pentecost }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ 1 Pet. 5:6-11 }\quad{\scriptsize Gospel\ Luke 15:1-10 } -\par{\scriptsize Commemoration\ Sts. Primus \& Felicianus } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 9 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Wednesday of the 3rd Week of the Time after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ 1 Pet. 5:6-11 \quad Gospel\ Luke 15:1-10 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Sts. Primus \& Felicianus } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 10 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par -{\bfseries St. Margaret of Scotland }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Prov 31:10-31 }\quad{\scriptsize Gospel\ Matt 13:44-52. } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 10 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Margaret of Scotland }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Prov 31:10-31 \quad Gospel\ Matt 13:44-52. } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 11 } \;\; {\scriptsize Friday } \hfill \swatch{licolred}\par -{\bfseries St. Barnabas }\par -{\scriptsize 3rd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Acts 11:21-26; 13:1-3 }\quad{\scriptsize Gospel\ Matt 10:16-22 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 11 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Barnabas }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Red \quad Epistle\ Acts 11:21-26; 13:1-3 \quad Gospel\ Matt 10:16-22 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 12 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par -{\bfseries St. John of San Fecundo }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Luke 12:35-40 } -\par{\scriptsize Commemoration\ St. Basilidus } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 12 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. John of San Fecundo }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Sir 31:8-11 \quad Gospel\ Luke 12:35-40 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Basilidus } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w6-3} {\bfseries\large June }\hfill{\small Week 3}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 13 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par -{\bfseries 4th Sunday after Pentecost }\par -{\scriptsize 2nd Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Rom 8:18-23 }\quad{\scriptsize Gospel\ Luke 5:1-11 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 13 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries 4th Sunday after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Green \quad Epistle\ Rom 8:18-23 \quad Gospel\ Luke 5:1-11 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 14 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par -{\bfseries St. Basil the Great }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Luke 14:26-35 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 14 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Basil the Great }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 2 Tim 4:1-8 \quad Gospel\ Luke 14:26-35 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 15 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolgreen}\par -{\bfseries Tuesday of the 4th Week of the Time after Pentecost }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Rom 8:18-23 }\quad{\scriptsize Gospel\ Luke 5:1-11 } -\par{\scriptsize Commemoration\ St. Vitus } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 15 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Tuesday of the 4th Week of the Time after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ Rom 8:18-23 \quad Gospel\ Luke 5:1-11 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Vitus } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 16 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolgreen}\par -{\bfseries Wednesday of the 4th Week of the Time after Pentecost }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Rom 8:18-23 }\quad{\scriptsize Gospel\ Luke 5:1-11 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 16 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Wednesday of the 4th Week of the Time after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ Rom 8:18-23 \quad Gospel\ Luke 5:1-11 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 17 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par -{\bfseries St. Gregory Barbarigo }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Sir 44:16-27; 45:3-20 }\quad{\scriptsize Gospel\ Matt 25:14-23 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 17 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Gregory Barbarigo }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Sir 44:16-27; 45:3-20 \quad Gospel\ Matt 25:14-23 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 18 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par -{\bfseries St. Ephrem of Syria }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 } -\par{\scriptsize Commemoration\ Ss. Marcus and Marcellianus } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 18 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Ephrem of Syria }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 2 Tim 4:1-8 \quad Gospel\ Matt 5:13-19 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Ss. Marcus and Marcellianus } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 19 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par -{\bfseries St. Julia of Falconieri }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 2 Cor 10:17-18; 11:1-2 }\quad{\scriptsize Gospel\ Matt 25:1-13. } -\par{\scriptsize Commemoration\ Sts. Gervasius and Protasius } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 19 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Julia of Falconieri }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 2 Cor 10:17-18; 11:1-2 \quad Gospel\ Matt 25:1-13. } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Sts. Gervasius and Protasius } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w6-4} {\bfseries\large June }\hfill{\small Week 4}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 20 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par -{\bfseries 5th Sunday after Pentecost }\par -{\scriptsize 2nd Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ 1 Pet 3:8-15. }\quad{\scriptsize Gospel\ Matt 5:20-24. } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 20 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries 5th Sunday after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Green \quad Epistle\ 1 Pet 3:8-15. \quad Gospel\ Matt 5:20-24. } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 21 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par -{\bfseries St. Aloysius Gongzaga }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Matt 22:29-40 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 21 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Aloysius Gongzaga }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Sir 31:8-11 \quad Gospel\ Matt 22:29-40 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 22 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par -{\bfseries St. Paulinus of Nola }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 2 Cor. 8:9-15 }\quad{\scriptsize Gospel\ Luke 12:32-34 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 22 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Paulinus of Nola }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 2 Cor. 8:9-15 \quad Gospel\ Luke 12:32-34 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 23 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolviolet}\par -{\bfseries Vigil of the Nativity of St. John the Baptist }\par -{\scriptsize 2nd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Jer 1:4-10 }\quad{\scriptsize Gospel\ Luke 1:5-17 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 23 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Vigil of the Nativity of St. John the Baptist }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Violet \quad Epistle\ Jer 1:4-10 \quad Gospel\ Luke 1:5-17 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 24 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par -{\bfseries Nativity of St. John the Baptist }\par -{\scriptsize 1st Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Isa 49:1-3, 5-7. }\quad{\scriptsize Gospel\ Luke 1:57-68 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 24 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Nativity of St. John the Baptist }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ White \quad Epistle\ Isa 49:1-3, 5-7. \quad Gospel\ Luke 1:57-68 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 25 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par -{\bfseries St. William }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Ecclus 45:1-6 }\quad{\scriptsize Gospel\ Matt 19:27-29. } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 25 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. William }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Ecclus 45:1-6 \quad Gospel\ Matt 19:27-29. } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 26 } \;\; {\scriptsize Saturday } \hfill \swatch{licolred}\par -{\bfseries Sts. John \& Paul }\par -{\scriptsize 3rd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Eccli 44:10-15 }\quad{\scriptsize Gospel\ Luke 12:1-8 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 26 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries Sts. John \& Paul }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Red \quad Epistle\ Eccli 44:10-15 \quad Gospel\ Luke 12:1-8 } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w6-5} {\bfseries\large June }\hfill{\small Week 5}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 27 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par -{\bfseries 6th Sunday after Pentecost }\par -{\scriptsize 2nd Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Rom 6:3-11. }\quad{\scriptsize Gospel\ Mark 8:1-9 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 27 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries 6th Sunday after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Green \quad Epistle\ Rom 6:3-11. \quad Gospel\ Mark 8:1-9 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 28 } \;\; {\scriptsize Monday } \hfill \swatch{licolviolet}\par -{\bfseries Vigil of Sts. Peter \& Paul }\par -{\scriptsize 2nd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Acts 3:1-10 }\quad{\scriptsize Gospel\ John 21:15-19 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 28 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Vigil of Sts. Peter \& Paul }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Violet \quad Epistle\ Acts 3:1-10 \quad Gospel\ John 21:15-19 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 29 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par -{\bfseries Sts. Peter \& Paul }\par -{\scriptsize 1st Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Acts 12:1-11 }\quad{\scriptsize Gospel\ Matt 16:13-19 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 29 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries Sts. Peter \& Paul }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ Red \quad Epistle\ Acts 12:1-11 \quad Gospel\ Matt 16:13-19 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 30 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolred}\par -{\bfseries In Commemoratione Sancti Pauli Apostoli }\par -{\scriptsize 3rd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Gal 1:11-20 }\quad{\scriptsize Gospel\ Matt 10:16-22 } -\par{\scriptsize Commemoration\ St. Peter } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 30 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries In Commemoratione Sancti Pauli Apostoli }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Red \quad Epistle\ Gal 1:11-20 \quad Gospel\ Matt 10:16-22 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Peter } \end{tcolorbox} @@ -2243,10 +2201,16 @@ -\clearpage +\vspace{1mm} + +\needspace{29mm} +\vspace{2mm}\noindent\rule{\linewidth}{1pt}\par\vspace{0.8mm} +{\LARGE\bfseries July 2027 }\par\vspace{1mm} + +\needspace{16mm} \label{w7-1} {\bfseries\large July }\hfill{\small Week 1}\par\vspace{0.5mm} @@ -2259,668 +2223,628 @@ -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 1 } \;\; {\scriptsize Thursday } \hfill \swatch{licolred}\par -{\bfseries The Precious Blood of Our Lord Jesus Christ }\par -{\scriptsize 1st Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Heb 9:11-15. }\quad{\scriptsize Gospel\ John 19:30-35 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 1 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries The Precious Blood of Our Lord Jesus Christ }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ Red \quad Epistle\ Heb 9:11-15. \quad Gospel\ John 19:30-35 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 2 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par -{\bfseries Visitation of the Blessed Virgin Mary }\par -{\scriptsize 2nd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Song 2:8-14 }\quad{\scriptsize Gospel\ Luke 1:39-47 } -\par{\scriptsize Commemoration\ SS. Processus and Martinian } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 2 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Visitation of the Blessed Virgin Mary }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ White \quad Epistle\ Song 2:8-14 \quad Gospel\ Luke 1:39-47 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ SS. Processus and Martinian } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 3 } \;\; {\scriptsize Saturday } \hfill \swatch{licolred}\par -{\bfseries St. Irenaeus }\par -{\scriptsize 3rd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ 2 Tim. 3:14-17; 4:1-5 }\quad{\scriptsize Gospel\ Matt 10:28-33 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 3 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Irenaeus }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Red \quad Epistle\ 2 Tim. 3:14-17; 4:1-5 \quad Gospel\ Matt 10:28-33 } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w7-2} {\bfseries\large July }\hfill{\small Week 2}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 4 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par -{\bfseries 7th Sunday after Pentecost }\par -{\scriptsize 2nd Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Rom 6:19-23 }\quad{\scriptsize Gospel\ Matt 7:15-21 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 4 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries 7th Sunday after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Green \quad Epistle\ Rom 6:19-23 \quad Gospel\ Matt 7:15-21 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 5 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par -{\bfseries St. Anthony Mary Zaccariah }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 1 Tim. 4:8-16 }\quad{\scriptsize Gospel\ Mark 10:15-21 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 5 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Anthony Mary Zaccariah }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 1 Tim. 4:8-16 \quad Gospel\ Mark 10:15-21 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 6 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolgreen}\par -{\bfseries Tuesday of the 7th Week of the Time after Pentecost }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Rom 6:19-23 }\quad{\scriptsize Gospel\ Matt 7:15-21 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 6 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Tuesday of the 7th Week of the Time after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ Rom 6:19-23 \quad Gospel\ Matt 7:15-21 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 7 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par -{\bfseries Sts. Cyril \& Methodius }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Heb 7:23-27 }\quad{\scriptsize Gospel\ Luke 10:1-9 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 7 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Sts. Cyril \& Methodius }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Heb 7:23-27 \quad Gospel\ Luke 10:1-9 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 8 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par -{\bfseries St. Elizabeth of Portugal }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Prov 31:10-31 }\quad{\scriptsize Gospel\ Matt 13:44-52. } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 8 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Elizabeth of Portugal }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Prov 31:10-31 \quad Gospel\ Matt 13:44-52. } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 9 } \;\; {\scriptsize Friday } \hfill \swatch{licolgreen}\par -{\bfseries Friday of the 7th Week of the Time after Pentecost }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Rom 6:19-23 }\quad{\scriptsize Gospel\ Matt 7:15-21 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 9 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Friday of the 7th Week of the Time after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ Rom 6:19-23 \quad Gospel\ Matt 7:15-21 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 10 } \;\; {\scriptsize Saturday } \hfill \swatch{licolred}\par -{\bfseries Seven Holy Brothers and Sts. Rufina \& Secunda }\par -{\scriptsize 3rd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Prov 31:10-31 }\quad{\scriptsize Gospel\ Matt 12:46-50 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 10 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries Seven Holy Brothers and Sts. Rufina \& Secunda }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Red \quad Epistle\ Prov 31:10-31 \quad Gospel\ Matt 12:46-50 } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w7-3} {\bfseries\large July }\hfill{\small Week 3}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 11 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par -{\bfseries 8th Sunday after Pentecost }\par -{\scriptsize 2nd Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Rom 8:12-17 }\quad{\scriptsize Gospel\ Luke 16:1-9 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 11 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries 8th Sunday after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Green \quad Epistle\ Rom 8:12-17 \quad Gospel\ Luke 16:1-9 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 12 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par -{\bfseries St. John Gualbert }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Ecclus 45:1-6 }\quad{\scriptsize Gospel\ Matt 5:43-48 } -\par{\scriptsize Commemoration\ Ss. Naboris et Felicis } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 12 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. John Gualbert }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Ecclus 45:1-6 \quad Gospel\ Matt 5:43-48 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Ss. Naboris et Felicis } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 13 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolgreen}\par -{\bfseries Tuesday of the 8th Week of the Time after Pentecost }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Rom 8:12-17 }\quad{\scriptsize Gospel\ Luke 16:1-9 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 13 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Tuesday of the 8th Week of the Time after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ Rom 8:12-17 \quad Gospel\ Luke 16:1-9 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 14 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par -{\bfseries St. Bonaventure }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 14 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Bonaventure }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 2 Tim 4:1-8 \quad Gospel\ Matt 5:13-19 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 15 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par -{\bfseries St. Henry the Emperor }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Luke 12:35-40 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 15 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Henry the Emperor }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Sir 31:8-11 \quad Gospel\ Luke 12:35-40 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 16 } \;\; {\scriptsize Friday } \hfill \swatch{licolgreen}\par -{\bfseries Friday of the 8th Week of the Time after Pentecost }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Rom 8:12-17 }\quad{\scriptsize Gospel\ Luke 16:1-9 } -\par{\scriptsize Commemoration\ Our Lady of Mt. Carmel } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 16 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Friday of the 8th Week of the Time after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ Rom 8:12-17 \quad Gospel\ Luke 16:1-9 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Our Lady of Mt. Carmel } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 17 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par -{\bfseries Our Lady's Saturday Office }\par -{\scriptsize 4th Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Ecclus 24:14-16 }\quad{\scriptsize Gospel\ Luke 11:27-28 } -\par{\scriptsize Commemoration\ St. Alexis } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 17 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Our Lady's Saturday Office }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ White \quad Epistle\ Ecclus 24:14-16 \quad Gospel\ Luke 11:27-28 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Alexis } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w7-4} {\bfseries\large July }\hfill{\small Week 4}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 18 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par -{\bfseries 9th Sunday after Pentecost }\par -{\scriptsize 2nd Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ 1 Cor. 10:6-13 }\quad{\scriptsize Gospel\ Luke 19:41-47 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 18 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries 9th Sunday after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Green \quad Epistle\ 1 Cor. 10:6-13 \quad Gospel\ Luke 19:41-47 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 19 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par -{\bfseries St. Vincent de Paul }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 1 Cor. 4:9-14 }\quad{\scriptsize Gospel\ Luke 10:1-9 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 19 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Vincent de Paul }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 1 Cor. 4:9-14 \quad Gospel\ Luke 10:1-9 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 20 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par -{\bfseries St. Jerome Emiliani }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Isa 58:7-11 }\quad{\scriptsize Gospel\ Matt 19:13-21 } -\par{\scriptsize Commemoration\ St. Margaret } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 20 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Jerome Emiliani }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Isa 58:7-11 \quad Gospel\ Matt 19:13-21 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Margaret } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 21 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par -{\bfseries St. Laurence of Brindisi }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 } -\par{\scriptsize Commemoration\ St. Praxedis Virginis } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 21 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Laurence of Brindisi }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 2 Tim 4:1-8 \quad Gospel\ Matt 5:13-19 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Praxedis Virginis } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 22 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par -{\bfseries St. Mary Magdalene }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Song 3:2-5; 8:6-7 }\quad{\scriptsize Gospel\ Luke 7:36-50 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 22 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Mary Magdalene }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Song 3:2-5; 8:6-7 \quad Gospel\ Luke 7:36-50 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 23 } \;\; {\scriptsize Friday } \hfill \swatch{licolred}\par -{\bfseries St. Apollinaris }\par -{\scriptsize 3rd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ 1 Pet. 5:1-11 }\quad{\scriptsize Gospel\ Luke 22:24-30 } -\par{\scriptsize Commemoration\ S. Liborii } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 23 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Apollinaris }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Red \quad Epistle\ 1 Pet. 5:1-11 \quad Gospel\ Luke 22:24-30 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ S. Liborii } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 24 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par -{\bfseries Our Lady's Saturday Office }\par -{\scriptsize 4th Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Ecclus 24:14-16 }\quad{\scriptsize Gospel\ Luke 11:27-28 } -\par{\scriptsize Commemoration\ St. Christina } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 24 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Our Lady's Saturday Office }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ White \quad Epistle\ Ecclus 24:14-16 \quad Gospel\ Luke 11:27-28 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Christina } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w7-5} {\bfseries\large July }\hfill{\small Week 5}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 25 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par -{\bfseries 10th Sunday after Pentecost }\par -{\scriptsize 2nd Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ 1 Cor. 12:2-11 }\quad{\scriptsize Gospel\ Luke 18:9-14 } -\par{\scriptsize Commemoration\ St. James the Greater } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 25 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries 10th Sunday after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Green \quad Epistle\ 1 Cor. 12:2-11 \quad Gospel\ Luke 18:9-14 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. James the Greater } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 26 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par -{\bfseries St. Anne, Mother of the Blessed Virgin }\par -{\scriptsize 2nd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Prov 31:10-31 }\quad{\scriptsize Gospel\ Matt 13:44-52. } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 26 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Anne, Mother of the Blessed Virgin }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ White \quad Epistle\ Prov 31:10-31 \quad Gospel\ Matt 13:44-52. } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 27 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolgreen}\par -{\bfseries Tuesday of the 10th Week of the Time after Pentecost }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ 1 Cor. 12:2-11 }\quad{\scriptsize Gospel\ Luke 18:9-14 } -\par{\scriptsize Commemoration\ St. Pantaleon } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 27 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Tuesday of the 10th Week of the Time after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ 1 Cor. 12:2-11 \quad Gospel\ Luke 18:9-14 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Pantaleon } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 28 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolred}\par -{\bfseries Sts. Nazarius \& Celsus, St. Victor I \& St. Innocent I }\par -{\scriptsize 3rd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Wis 10:17-20 }\quad{\scriptsize Gospel\ Luke 21:9-19 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 28 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries Sts. Nazarius \& Celsus, St. Victor I \& St. Innocent I }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Red \quad Epistle\ Wis 10:17-20 \quad Gospel\ Luke 21:9-19 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 29 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par -{\bfseries St. Martha }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 2 Cor 10:17-18; 11:1-2 }\quad{\scriptsize Gospel\ Luke 10:38-42 } -\par{\scriptsize Commemoration\ Ss. Felicis, Simplicii, Faustini et Beatricis } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 29 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Martha }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 2 Cor 10:17-18; 11:1-2 \quad Gospel\ Luke 10:38-42 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Ss. Felicis, Simplicii, Faustini et Beatricis } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 30 } \;\; {\scriptsize Friday } \hfill \swatch{licolgreen}\par -{\bfseries Friday of the 10th Week of the Time after Pentecost }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ 1 Cor. 12:2-11 }\quad{\scriptsize Gospel\ Luke 18:9-14 } -\par{\scriptsize Commemoration\ Sts. Abdon \& Sennen } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 30 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Friday of the 10th Week of the Time after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ 1 Cor. 12:2-11 \quad Gospel\ Luke 18:9-14 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Sts. Abdon \& Sennen } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 31 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par -{\bfseries St. Ignatius Loyola }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 2 Tim. 2:8-10; 3:10-12. }\quad{\scriptsize Gospel\ Luke 10:1-9 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 31 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Ignatius Loyola }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 2 Tim. 2:8-10; 3:10-12. \quad Gospel\ Luke 10:1-9 } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{29mm} +\vspace{2mm}\noindent\rule{\linewidth}{1pt}\par\vspace{0.8mm} +{\LARGE\bfseries August 2027 }\par\vspace{1mm} + +\needspace{16mm} \label{w8-1} {\bfseries\large August }\hfill{\small Week 1}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 1 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par -{\bfseries 11th Sunday after Pentecost }\par -{\scriptsize 2nd Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ 1 Cor. 15:1-10 }\quad{\scriptsize Gospel\ Mark 7:31-37 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 1 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries 11th Sunday after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Green \quad Epistle\ 1 Cor. 15:1-10 \quad Gospel\ Mark 7:31-37 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 2 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par -{\bfseries St. Alphonsus Liguori }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 2 Tim. 2:1-7 }\quad{\scriptsize Gospel\ Luke 10:1-9 } -\par{\scriptsize Commemoration\ St. Stephen I, Pope and Martyr } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 2 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Alphonsus Liguori }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 2 Tim. 2:1-7 \quad Gospel\ Luke 10:1-9 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Stephen I, Pope and Martyr } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 3 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolgreen}\par -{\bfseries Tuesday of the 11th Week of the Time after Pentecost }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ 1 Cor. 15:1-10 }\quad{\scriptsize Gospel\ Mark 7:31-37 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 3 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Tuesday of the 11th Week of the Time after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ 1 Cor. 15:1-10 \quad Gospel\ Mark 7:31-37 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 4 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par -{\bfseries St. Dominic }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 2 Tim. 4:1-8 }\quad{\scriptsize Gospel\ Luke 12:35-40 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 4 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Dominic }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 2 Tim. 4:1-8 \quad Gospel\ Luke 12:35-40 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 5 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par -{\bfseries Dedication of the Basilica of St. Mary Major }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Ecclus 24:14-16 }\quad{\scriptsize Gospel\ Luke 11:27-28 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 5 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Dedication of the Basilica of St. Mary Major }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Ecclus 24:14-16 \quad Gospel\ Luke 11:27-28 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 6 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par -{\bfseries Transfiguration of Our Lord }\par -{\scriptsize 2nd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 2 Pet. 1:16-19 }\quad{\scriptsize Gospel\ Matt 17:1-9 } -\par{\scriptsize Commemoration\ Pope Sixtus II, Felicissimus and Agapitus, Martyrs } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 6 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Transfiguration of Our Lord }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ White \quad Epistle\ 2 Pet. 1:16-19 \quad Gospel\ Matt 17:1-9 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Pope Sixtus II, Felicissimus and Agapitus, Martyrs } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 7 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par -{\bfseries St. Cajetan }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Matt 6:24-33 } -\par{\scriptsize Commemoration\ St. Donatus } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 7 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Cajetan }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Sir 31:8-11 \quad Gospel\ Matt 6:24-33 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Donatus } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w8-2} {\bfseries\large August }\hfill{\small Week 2}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 8 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par -{\bfseries 12th Sunday after Pentecost }\par -{\scriptsize 2nd Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ 2 Cor. 3:4-9 }\quad{\scriptsize Gospel\ Luke 10:23-37 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 8 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries 12th Sunday after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Green \quad Epistle\ 2 Cor. 3:4-9 \quad Gospel\ Luke 10:23-37 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 9 } \;\; {\scriptsize Monday } \hfill \swatch{licolviolet}\par -{\bfseries Vigil of St. Lawrence }\par -{\scriptsize 3rd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Ecclus 51:1-8, 12 }\quad{\scriptsize Gospel\ Matt 16:24-27 } -\par{\scriptsize Commemoration\ St. Romanus } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 9 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Vigil of St. Lawrence }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Violet \quad Epistle\ Ecclus 51:1-8, 12 \quad Gospel\ Matt 16:24-27 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Romanus } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 10 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par -{\bfseries St. Lawrence }\par -{\scriptsize 2nd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ 2 Cor. 9:6-10 }\quad{\scriptsize Gospel\ John 12:24-26 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 10 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Lawrence }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Red \quad Epistle\ 2 Cor. 9:6-10 \quad Gospel\ John 12:24-26 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 11 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolgreen}\par -{\bfseries Wednesday of the 12th Week of the Time after Pentecost }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ 2 Cor. 3:4-9 }\quad{\scriptsize Gospel\ Luke 10:23-37 } -\par{\scriptsize Commemoration\ Sts. Tiburtius \& Susanna } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 11 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Wednesday of the 12th Week of the Time after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ 2 Cor. 3:4-9 \quad Gospel\ Luke 10:23-37 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Sts. Tiburtius \& Susanna } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 12 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par -{\bfseries St. Clare }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 2 Cor 10:17-18; 11:1-2 }\quad{\scriptsize Gospel\ Matt 25:1-13. } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 12 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Clare }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 2 Cor 10:17-18; 11:1-2 \quad Gospel\ Matt 25:1-13. } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 13 } \;\; {\scriptsize Friday } \hfill \swatch{licolgreen}\par -{\bfseries Friday of the 12th Week of the Time after Pentecost }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ 2 Cor. 3:4-9 }\quad{\scriptsize Gospel\ Luke 10:23-37 } -\par{\scriptsize Commemoration\ Sts. Hippolytus \& Cassian } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 13 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Friday of the 12th Week of the Time after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ 2 Cor. 3:4-9 \quad Gospel\ Luke 10:23-37 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Sts. Hippolytus \& Cassian } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 14 } \;\; {\scriptsize Saturday } \hfill \swatch{licolviolet}\par -{\bfseries Vigil of the Assumption }\par -{\scriptsize 2nd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Sir 24:23-31 }\quad{\scriptsize Gospel\ Luke 11:27-28 } -\par{\scriptsize Commemoration\ St. Eusebius } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 14 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Vigil of the Assumption }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Violet \quad Epistle\ Sir 24:23-31 \quad Gospel\ Luke 11:27-28 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Eusebius } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w8-3} {\bfseries\large August }\hfill{\small Week 3}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 15 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par -{\bfseries Assumption of the Blessed Virgin Mary }\par -{\scriptsize 1st Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Judith 13:22-25; 15:10 }\quad{\scriptsize Gospel\ Luke 1:41-50 } -\par{\scriptsize Commemoration\ 13th Sunday after Pentecost } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 15 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Assumption of the Blessed Virgin Mary }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ White \quad Epistle\ Judith 13:22-25; 15:10 \quad Gospel\ Luke 1:41-50 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ 13th Sunday after Pentecost } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 16 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par -{\bfseries St. Joachim, Father of the Blessed Virgin }\par -{\scriptsize 2nd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Matt 1:1-16 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 16 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Joachim, Father of the Blessed Virgin }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ White \quad Epistle\ Sir 31:8-11 \quad Gospel\ Matt 1:1-16 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 17 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par -{\bfseries St. Hyacinth }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Luke 12:35-40 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 17 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Hyacinth }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Sir 31:8-11 \quad Gospel\ Luke 12:35-40 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 18 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolgreen}\par -{\bfseries Wednesday of the 13th Week of the Time after Pentecost }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Gal 3:16-22 }\quad{\scriptsize Gospel\ Luke 17:11-19 } -\par{\scriptsize Commemoration\ St. Agapitus } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 18 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Wednesday of the 13th Week of the Time after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ Gal 3:16-22 \quad Gospel\ Luke 17:11-19 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Agapitus } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 19 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par -{\bfseries St. John Eudes }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Luke 12:35-40 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 19 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. John Eudes }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Sir 31:8-11 \quad Gospel\ Luke 12:35-40 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 20 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par -{\bfseries St. Bernard of Clairvaux }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Ecclus 39:6-14 }\quad{\scriptsize Gospel\ Matt 5:13-19 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 20 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Bernard of Clairvaux }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Ecclus 39:6-14 \quad Gospel\ Matt 5:13-19 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 21 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par -{\bfseries St. Jane Frances de Chantal }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Prov 31:10-31 }\quad{\scriptsize Gospel\ Matt 13:44-52. } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 21 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Jane Frances de Chantal }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Prov 31:10-31 \quad Gospel\ Matt 13:44-52. } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w8-4} {\bfseries\large August }\hfill{\small Week 4}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 22 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par -{\bfseries 14th Sunday after Pentecost }\par -{\scriptsize 2nd Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Gal 5:16-24 }\quad{\scriptsize Gospel\ Matt 6:24-33 } -\par{\scriptsize Commemoration\ Immaculate Heart of Mary } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 22 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries 14th Sunday after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Green \quad Epistle\ Gal 5:16-24 \quad Gospel\ Matt 6:24-33 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Immaculate Heart of Mary } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 23 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par -{\bfseries St. Philip Benizi }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 1 Cor. 4:9-14 }\quad{\scriptsize Gospel\ Luke 12:32-34 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 23 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Philip Benizi }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 1 Cor. 4:9-14 \quad Gospel\ Luke 12:32-34 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 24 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par -{\bfseries St. Bartholomew }\par -{\scriptsize 2nd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ 1 Cor. 12:27-31 }\quad{\scriptsize Gospel\ Luke 6:12-19 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 24 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Bartholomew }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Red \quad Epistle\ 1 Cor. 12:27-31 \quad Gospel\ Luke 6:12-19 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 25 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par -{\bfseries St. Louis IX }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Wis 10:10-14 }\quad{\scriptsize Gospel\ Luke 19:12-26 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 25 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Louis IX }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Wis 10:10-14 \quad Gospel\ Luke 19:12-26 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 26 } \;\; {\scriptsize Thursday } \hfill \swatch{licolgreen}\par -{\bfseries Thursday of the 14th Week of the Time after Pentecost }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Gal 5:16-24 }\quad{\scriptsize Gospel\ Matt 6:24-33 } -\par{\scriptsize Commemoration\ St. Zephyrinus } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 26 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Thursday of the 14th Week of the Time after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ Gal 5:16-24 \quad Gospel\ Matt 6:24-33 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Zephyrinus } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 27 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par -{\bfseries St. Joseph Calasance }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Wis 10:10-14 }\quad{\scriptsize Gospel\ Matt 18:1-5 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 27 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Joseph Calasance }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Wis 10:10-14 \quad Gospel\ Matt 18:1-5 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 28 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par -{\bfseries St. Augustine }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 } -\par{\scriptsize Commemoration\ St. Hermes } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 28 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Augustine }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 2 Tim 4:1-8 \quad Gospel\ Matt 5:13-19 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Hermes } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w8-5} {\bfseries\large August }\hfill{\small Week 5}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 29 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par -{\bfseries 15th Sunday after Pentecost }\par -{\scriptsize 2nd Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Gal 5:25-26; 6:1-10 }\quad{\scriptsize Gospel\ Luke 7:11-16 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 29 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries 15th Sunday after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Green \quad Epistle\ Gal 5:25-26; 6:1-10 \quad Gospel\ Luke 7:11-16 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 30 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par -{\bfseries St. Rose of Lima }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 2 Cor 10:17-18; 11:1-2 }\quad{\scriptsize Gospel\ Matt 25:1-13. } -\par{\scriptsize Commemoration\ Sts. Felix and Adauctus } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 30 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Rose of Lima }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 2 Cor 10:17-18; 11:1-2 \quad Gospel\ Matt 25:1-13. } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Sts. Felix and Adauctus } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 31 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par -{\bfseries St. Raymond Nonnatus }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Luke 12:35-40 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 31 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Raymond Nonnatus }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Sir 31:8-11 \quad Gospel\ Luke 12:35-40 } \end{tcolorbox} @@ -2933,10 +2857,16 @@ -\clearpage +\vspace{1mm} + +\needspace{29mm} +\vspace{2mm}\noindent\rule{\linewidth}{1pt}\par\vspace{0.8mm} +{\LARGE\bfseries September 2027 }\par\vspace{1mm} + +\needspace{16mm} \label{w9-1} {\bfseries\large September }\hfill{\small Week 1}\par\vspace{0.5mm} @@ -2947,321 +2877,299 @@ -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 1 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolgreen}\par -{\bfseries Wednesday of the 15th Week of the Time after Pentecost }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Gal 5:25-26; 6:1-10 }\quad{\scriptsize Gospel\ Luke 7:11-16 } -\par{\scriptsize Commemoration\ St. Giles }\par{\scriptsize Commemoration\ Twelve Holy Brothers, Martyrs } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 1 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Wednesday of the 15th Week of the Time after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ Gal 5:25-26; 6:1-10 \quad Gospel\ Luke 7:11-16 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Giles }\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Twelve Holy Brothers, Martyrs } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 2 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par -{\bfseries St. Stephen of Hungary }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Luke 19:12-26 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 2 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Stephen of Hungary }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Sir 31:8-11 \quad Gospel\ Luke 19:12-26 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 3 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par -{\bfseries St. Pius X }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 1 Thess. 2:2-8 }\quad{\scriptsize Gospel\ John 21:15-17 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 3 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Pius X }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 1 Thess. 2:2-8 \quad Gospel\ John 21:15-17 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 4 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par -{\bfseries Our Lady's Saturday Office }\par -{\scriptsize 4th Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Ecclus 24:14-16 }\quad{\scriptsize Gospel\ Luke 11:27-28 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 4 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Our Lady's Saturday Office }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ White \quad Epistle\ Ecclus 24:14-16 \quad Gospel\ Luke 11:27-28 } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w9-2} {\bfseries\large September }\hfill{\small Week 2}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 5 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par -{\bfseries 16th Sunday after Pentecost }\par -{\scriptsize 2nd Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Eph 3:13-21 }\quad{\scriptsize Gospel\ Luke 14:1-11 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 5 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries 16th Sunday after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Green \quad Epistle\ Eph 3:13-21 \quad Gospel\ Luke 14:1-11 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 6 } \;\; {\scriptsize Monday } \hfill \swatch{licolgreen}\par -{\bfseries Monday of the 16th Week of the Time after Pentecost }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Eph 3:13-21 }\quad{\scriptsize Gospel\ Luke 14:1-11 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 6 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Monday of the 16th Week of the Time after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ Eph 3:13-21 \quad Gospel\ Luke 14:1-11 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 7 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolgreen}\par -{\bfseries Tuesday of the 16th Week of the Time after Pentecost }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Eph 3:13-21 }\quad{\scriptsize Gospel\ Luke 14:1-11 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 7 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Tuesday of the 16th Week of the Time after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ Eph 3:13-21 \quad Gospel\ Luke 14:1-11 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 8 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par -{\bfseries Nativity of the Blessed Virgin Mary }\par -{\scriptsize 2nd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Prov 8:22-35 }\quad{\scriptsize Gospel\ Matt 1:1-16 } -\par{\scriptsize Commemoration\ S. Hadriani } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 8 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Nativity of the Blessed Virgin Mary }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ White \quad Epistle\ Prov 8:22-35 \quad Gospel\ Matt 1:1-16 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ S. Hadriani } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 9 } \;\; {\scriptsize Thursday } \hfill \swatch{licolgreen}\par -{\bfseries Thursday of the 16th Week of the Time after Pentecost }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Eph 3:13-21 }\quad{\scriptsize Gospel\ Luke 14:1-11 } -\par{\scriptsize Commemoration\ St. Gorgonius } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 9 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Thursday of the 16th Week of the Time after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ Eph 3:13-21 \quad Gospel\ Luke 14:1-11 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Gorgonius } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 10 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par -{\bfseries St. Nicholas of Tolentino }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 1 Cor. 4:9-14 }\quad{\scriptsize Gospel\ Luke 12:32-34 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 10 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Nicholas of Tolentino }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 1 Cor. 4:9-14 \quad Gospel\ Luke 12:32-34 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 11 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par -{\bfseries Our Lady's Saturday Office }\par -{\scriptsize 4th Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Ecclus 24:14-16 }\quad{\scriptsize Gospel\ Luke 11:27-28 } -\par{\scriptsize Commemoration\ Sts. Protus \& Hyacinth } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 11 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Our Lady's Saturday Office }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ White \quad Epistle\ Ecclus 24:14-16 \quad Gospel\ Luke 11:27-28 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Sts. Protus \& Hyacinth } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w9-3} {\bfseries\large September }\hfill{\small Week 3}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 12 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par -{\bfseries 17th Sunday after Pentecost }\par -{\scriptsize 2nd Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Eph 4:1-6 }\quad{\scriptsize Gospel\ Matt 22:34-46 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 12 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries 17th Sunday after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Green \quad Epistle\ Eph 4:1-6 \quad Gospel\ Matt 22:34-46 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 13 } \;\; {\scriptsize Monday } \hfill \swatch{licolgreen}\par -{\bfseries Monday of the 17th Week of the Time after Pentecost }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Eph 4:1-6 }\quad{\scriptsize Gospel\ Matt 22:34-46 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 13 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Monday of the 17th Week of the Time after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ Eph 4:1-6 \quad Gospel\ Matt 22:34-46 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 14 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par -{\bfseries Exaltation of the Holy Cross }\par -{\scriptsize 2nd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Phil 2:5-11 }\quad{\scriptsize Gospel\ John 12:31-36 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 14 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries Exaltation of the Holy Cross }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Red \quad Epistle\ Phil 2:5-11 \quad Gospel\ John 12:31-36 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 15 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par -{\bfseries Seven Sorrows of the Blessed Virgin Mary }\par -{\scriptsize 2nd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Judith 13:22; 13:23-25 }\quad{\scriptsize Gospel\ John 19:25-27 } -\par{\scriptsize Commemoration\ S. Nicomedes } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 15 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Seven Sorrows of the Blessed Virgin Mary }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ White \quad Epistle\ Judith 13:22; 13:23-25 \quad Gospel\ John 19:25-27 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ S. Nicomedes } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 16 } \;\; {\scriptsize Thursday } \hfill \swatch{licolred}\par -{\bfseries Sts. Cornelius \& Cyprian }\par -{\scriptsize 3rd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Wis 3:1-8 }\quad{\scriptsize Gospel\ Luke 21:9-19 } -\par{\scriptsize Commemoration\ Sts. Euphemia, Lucy and Geminianus } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 16 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries Sts. Cornelius \& Cyprian }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Red \quad Epistle\ Wis 3:1-8 \quad Gospel\ Luke 21:9-19 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Sts. Euphemia, Lucy and Geminianus } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 17 } \;\; {\scriptsize Friday } \hfill \swatch{licolgreen}\par -{\bfseries Friday of the 17th Week of the Time after Pentecost }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Eph 4:1-6 }\quad{\scriptsize Gospel\ Matt 22:34-46 } -\par{\scriptsize Commemoration\ Stigmata of St. Francis } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 17 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Friday of the 17th Week of the Time after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ Eph 4:1-6 \quad Gospel\ Matt 22:34-46 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Stigmata of St. Francis } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 18 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par -{\bfseries St. Joseph of Cupertino }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 1 Cor 13:1-8 }\quad{\scriptsize Gospel\ Matt 22:1-14 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 18 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Joseph of Cupertino }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 1 Cor 13:1-8 \quad Gospel\ Matt 22:1-14 } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w9-4} {\bfseries\large September }\hfill{\small Week 4}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 19 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par -{\bfseries 18th Sunday after Pentecost }\par -{\scriptsize 2nd Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ 1 Cor. 1:4-8 }\quad{\scriptsize Gospel\ Matt 9:1-8 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 19 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries 18th Sunday after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Green \quad Epistle\ 1 Cor. 1:4-8 \quad Gospel\ Matt 9:1-8 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 20 } \;\; {\scriptsize Monday } \hfill \swatch{licolgreen}\par -{\bfseries Monday of the 18th Week of the Time after Pentecost }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ 1 Cor. 1:4-8 }\quad{\scriptsize Gospel\ Matt 9:1-8 } -\par{\scriptsize Commemoration\ Sts. Eustace \& Companions } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 20 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Monday of the 18th Week of the Time after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ 1 Cor. 1:4-8 \quad Gospel\ Matt 9:1-8 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Sts. Eustace \& Companions } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 21 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par -{\bfseries St. Matthew }\par -{\scriptsize 2nd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Ezek 1:10-14 }\quad{\scriptsize Gospel\ Matt 9:9-13 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 21 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Matthew }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Red \quad Epistle\ Ezek 1:10-14 \quad Gospel\ Matt 9:9-13 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 22 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolviolet}\par -{\bfseries September Ember Wednesday }\par -{\scriptsize 2nd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ 2 Esd. 8:1-10 }\quad{\scriptsize Gospel\ Mark 9:16-28 } -\par{\scriptsize Commemoration\ St. Thomas of Villanova } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 22 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries September Ember Wednesday }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Violet \quad Epistle\ 2 Esd. 8:1-10 \quad Gospel\ Mark 9:16-28 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Thomas of Villanova } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 23 } \;\; {\scriptsize Thursday } \hfill \swatch{licolred}\par -{\bfseries St. Linus }\par -{\scriptsize 3rd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ 1 Pet 5:1-4; 5:10-11. }\quad{\scriptsize Gospel\ Matt 16:13-19 } -\par{\scriptsize Commemoration\ St. Thecla } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 23 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Linus }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Red \quad Epistle\ 1 Pet 5:1-4; 5:10-11. \quad Gospel\ Matt 16:13-19 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Thecla } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 24 } \;\; {\scriptsize Friday } \hfill \swatch{licolviolet}\par -{\bfseries September Ember Friday }\par -{\scriptsize 2nd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Osee 14:2-10 }\quad{\scriptsize Gospel\ Luke 7:36-50 } -\par{\scriptsize Commemoration\ Our Lady of Ransom } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 24 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries September Ember Friday }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Violet \quad Epistle\ Osee 14:2-10 \quad Gospel\ Luke 7:36-50 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Our Lady of Ransom } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 25 } \;\; {\scriptsize Saturday } \hfill \swatch{licolviolet}\par -{\bfseries September Ember Saturday }\par -{\scriptsize 2nd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Heb 9:2-12 }\quad{\scriptsize Gospel\ Luke 13:6-17 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 25 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries September Ember Saturday }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Violet \quad Epistle\ Heb 9:2-12 \quad Gospel\ Luke 13:6-17 } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w9-5} {\bfseries\large September }\hfill{\small Week 5}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 26 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par -{\bfseries 19th Sunday after Pentecost }\par -{\scriptsize 2nd Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Eph 4:23-28 }\quad{\scriptsize Gospel\ Matt 22:1-14 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 26 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries 19th Sunday after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Green \quad Epistle\ Eph 4:23-28 \quad Gospel\ Matt 22:1-14 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 27 } \;\; {\scriptsize Monday } \hfill \swatch{licolred}\par -{\bfseries Sts. Cosmas \& Damian }\par -{\scriptsize 3rd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Wis 5:16-20 }\quad{\scriptsize Gospel\ Luke 6:17-23 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 27 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries Sts. Cosmas \& Damian }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Red \quad Epistle\ Wis 5:16-20 \quad Gospel\ Luke 6:17-23 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 28 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par -{\bfseries St. Wenceslaus }\par -{\scriptsize 3rd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Wis 10:10-14 }\quad{\scriptsize Gospel\ Matt 10:34-42 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 28 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Wenceslaus }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Red \quad Epistle\ Wis 10:10-14 \quad Gospel\ Matt 10:34-42 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 29 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par -{\bfseries Dedication of St. Michael the Archangel }\par -{\scriptsize 1st Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Rev 1:1-5 }\quad{\scriptsize Gospel\ Matt 18:1-10 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 29 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Dedication of St. Michael the Archangel }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ White \quad Epistle\ Rev 1:1-5 \quad Gospel\ Matt 18:1-10 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 30 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par -{\bfseries St. Jerome }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 30 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Jerome }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 2 Tim 4:1-8 \quad Gospel\ Matt 5:13-19 } \end{tcolorbox} @@ -3270,10 +3178,16 @@ -\clearpage +\vspace{1mm} + +\needspace{29mm} +\vspace{2mm}\noindent\rule{\linewidth}{1pt}\par\vspace{0.8mm} +{\LARGE\bfseries October 2027 }\par\vspace{1mm} + +\needspace{16mm} \label{w10-1} {\bfseries\large October }\hfill{\small Week 1}\par\vspace{0.5mm} @@ -3288,336 +3202,315 @@ -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 1 } \;\; {\scriptsize Friday } \hfill \swatch{licolgreen}\par -{\bfseries Friday of the 19th Week of the Time after Pentecost }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Eph 4:23-28 }\quad{\scriptsize Gospel\ Matt 22:1-14 } -\par{\scriptsize Commemoration\ St. Remigius } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 1 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Friday of the 19th Week of the Time after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ Eph 4:23-28 \quad Gospel\ Matt 22:1-14 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Remigius } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 2 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par -{\bfseries Holy Guardian Angels }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Exod 23:20-23 }\quad{\scriptsize Gospel\ Matt 18:1-10 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 2 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Holy Guardian Angels }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Exod 23:20-23 \quad Gospel\ Matt 18:1-10 } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w10-2} {\bfseries\large October }\hfill{\small Week 2}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 3 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par -{\bfseries 20th Sunday after Pentecost }\par -{\scriptsize 2nd Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Eph 5:15-21 }\quad{\scriptsize Gospel\ John 4:46-53 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 3 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries 20th Sunday after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Green \quad Epistle\ Eph 5:15-21 \quad Gospel\ John 4:46-53 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 4 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par -{\bfseries St. Francis of Assisi }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Gal 6:14-18 }\quad{\scriptsize Gospel\ Matt 11:25-30 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 4 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Francis of Assisi }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Gal 6:14-18 \quad Gospel\ Matt 11:25-30 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 5 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolgreen}\par -{\bfseries Tuesday of the 20th Week of the Time after Pentecost }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Eph 5:15-21 }\quad{\scriptsize Gospel\ John 4:46-53 } -\par{\scriptsize Commemoration\ St. Placid \& Companions } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 5 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Tuesday of the 20th Week of the Time after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ Eph 5:15-21 \quad Gospel\ John 4:46-53 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Placid \& Companions } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 6 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par -{\bfseries St. Bruno }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Luke 12:35-40 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 6 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Bruno }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Sir 31:8-11 \quad Gospel\ Luke 12:35-40 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 7 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par -{\bfseries Our Lady of the Rosary }\par -{\scriptsize 2nd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Prov 8:22-24, 32-35. }\quad{\scriptsize Gospel\ Luke 1:26-38 } -\par{\scriptsize Commemoration\ St. Mark I } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 7 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Our Lady of the Rosary }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ White \quad Epistle\ Prov 8:22-24, 32-35. \quad Gospel\ Luke 1:26-38 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Mark I } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 8 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par -{\bfseries St. Bridget of Sweden }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 1 Tim. 5:3-10. }\quad{\scriptsize Gospel\ Matt 13:44-52. } -\par{\scriptsize Commemoration\ Ss. Sergio, Baccho, Marcello and Apulejo Martyrs } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 8 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Bridget of Sweden }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 1 Tim. 5:3-10. \quad Gospel\ Matt 13:44-52. } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Ss. Sergio, Baccho, Marcello and Apulejo Martyrs } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 9 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par -{\bfseries St. John Leonardi }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 2 Cor 4:1-6; 4:15-18 }\quad{\scriptsize Gospel\ Luke 10:1-9 } -\par{\scriptsize Commemoration\ St. Dionysius and companions } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 9 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. John Leonardi }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 2 Cor 4:1-6; 4:15-18 \quad Gospel\ Luke 10:1-9 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Dionysius and companions } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w10-3} {\bfseries\large October }\hfill{\small Week 3}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 10 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par -{\bfseries 21st Sunday after Pentecost }\par -{\scriptsize 2nd Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Eph 6:10-17 }\quad{\scriptsize Gospel\ Matt 18:23-35 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 10 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries 21st Sunday after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Green \quad Epistle\ Eph 6:10-17 \quad Gospel\ Matt 18:23-35 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 11 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par -{\bfseries Maternity of the Blessed Virgin Mary }\par -{\scriptsize 2nd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Sir 24:23-31 }\quad{\scriptsize Gospel\ Luke 2:43-51 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 11 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Maternity of the Blessed Virgin Mary }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ White \quad Epistle\ Sir 24:23-31 \quad Gospel\ Luke 2:43-51 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 12 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolgreen}\par -{\bfseries Tuesday of the 21st Week of the Time after Pentecost }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Eph 6:10-17 }\quad{\scriptsize Gospel\ Matt 18:23-35 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 12 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Tuesday of the 21st Week of the Time after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ Eph 6:10-17 \quad Gospel\ Matt 18:23-35 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 13 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par -{\bfseries St. Edward }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Luke 12:35-40 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 13 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Edward }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Sir 31:8-11 \quad Gospel\ Luke 12:35-40 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 14 } \;\; {\scriptsize Thursday } \hfill \swatch{licolred}\par -{\bfseries St. Callistus I }\par -{\scriptsize 3rd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ 1 Pet 5:1-4; 5:10-11. }\quad{\scriptsize Gospel\ Matt 16:13-19 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 14 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Callistus I }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Red \quad Epistle\ 1 Pet 5:1-4; 5:10-11. \quad Gospel\ Matt 16:13-19 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 15 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par -{\bfseries St. Teresa of Avila }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 2 Cor 10:17-18; 11:1-2 }\quad{\scriptsize Gospel\ Matt 25:1-13. } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 15 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Teresa of Avila }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 2 Cor 10:17-18; 11:1-2 \quad Gospel\ Matt 25:1-13. } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 16 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par -{\bfseries St. Hedwig }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Prov 31:10-31 }\quad{\scriptsize Gospel\ Matt 13:44-52. } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 16 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Hedwig }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Prov 31:10-31 \quad Gospel\ Matt 13:44-52. } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w10-4} {\bfseries\large October }\hfill{\small Week 4}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 17 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par -{\bfseries 22nd Sunday after Pentecost }\par -{\scriptsize 2nd Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Phil 1:6-11 }\quad{\scriptsize Gospel\ Matt 22:15-21 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 17 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries 22nd Sunday after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Green \quad Epistle\ Phil 1:6-11 \quad Gospel\ Matt 22:15-21 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 18 } \;\; {\scriptsize Monday } \hfill \swatch{licolred}\par -{\bfseries St. Luke the Evangelist }\par -{\scriptsize 2nd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ 2 Cor. 8:16-24 }\quad{\scriptsize Gospel\ Luke 10:1-9 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 18 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Luke the Evangelist }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Red \quad Epistle\ 2 Cor. 8:16-24 \quad Gospel\ Luke 10:1-9 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 19 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par -{\bfseries St. Peter of Alcantara }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Phil 3:7-12 }\quad{\scriptsize Gospel\ Luke 12:32-34 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 19 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Peter of Alcantara }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Phil 3:7-12 \quad Gospel\ Luke 12:32-34 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 20 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par -{\bfseries St. John Cantius }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ James 2:12-17 }\quad{\scriptsize Gospel\ Luke 12:35-40 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 20 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. John Cantius }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ James 2:12-17 \quad Gospel\ Luke 12:35-40 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 21 } \;\; {\scriptsize Thursday } \hfill \swatch{licolgreen}\par -{\bfseries Thursday of the 22nd Week of the Time after Pentecost }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Phil 1:6-11 }\quad{\scriptsize Gospel\ Matt 22:15-21 } -\par{\scriptsize Commemoration\ St. Hilarion }\par{\scriptsize Commemoration\ St. Ursula and Companions } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 21 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Thursday of the 22nd Week of the Time after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ Phil 1:6-11 \quad Gospel\ Matt 22:15-21 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Hilarion }\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Ursula and Companions } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 22 } \;\; {\scriptsize Friday } \hfill \swatch{licolgreen}\par -{\bfseries Friday of the 22nd Week of the Time after Pentecost }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Phil 1:6-11 }\quad{\scriptsize Gospel\ Matt 22:15-21 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 22 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Friday of the 22nd Week of the Time after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ Phil 1:6-11 \quad Gospel\ Matt 22:15-21 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 23 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par -{\bfseries St. Anthony Mary Claret }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Heb 7:23-27 }\quad{\scriptsize Gospel\ Matt 24:42-47 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 23 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Anthony Mary Claret }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Heb 7:23-27 \quad Gospel\ Matt 24:42-47 } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w10-5} {\bfseries\large October }\hfill{\small Week 5}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 24 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par -{\bfseries 23rd Sunday after Pentecost }\par -{\scriptsize 2nd Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Phil 3:17-21; 4:1-3 }\quad{\scriptsize Gospel\ Matt 9:18-26 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 24 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries 23rd Sunday after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Green \quad Epistle\ Phil 3:17-21; 4:1-3 \quad Gospel\ Matt 9:18-26 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 25 } \;\; {\scriptsize Monday } \hfill \swatch{licolgreen}\par -{\bfseries Monday of the 23rd Week of the Time after Pentecost }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Phil 3:17-21; 4:1-3 }\quad{\scriptsize Gospel\ Matt 9:18-26 } -\par{\scriptsize Commemoration\ Sts. Chrysanthus \& Daria } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 25 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Monday of the 23rd Week of the Time after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ Phil 3:17-21; 4:1-3 \quad Gospel\ Matt 9:18-26 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Sts. Chrysanthus \& Daria } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 26 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolgreen}\par -{\bfseries Tuesday of the 23rd Week of the Time after Pentecost }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Phil 3:17-21; 4:1-3 }\quad{\scriptsize Gospel\ Matt 9:18-26 } -\par{\scriptsize Commemoration\ St. Evaristus } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 26 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Tuesday of the 23rd Week of the Time after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ Phil 3:17-21; 4:1-3 \quad Gospel\ Matt 9:18-26 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Evaristus } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 27 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolgreen}\par -{\bfseries Wednesday of the 23rd Week of the Time after Pentecost }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Phil 3:17-21; 4:1-3 }\quad{\scriptsize Gospel\ Matt 9:18-26 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 27 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Wednesday of the 23rd Week of the Time after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ Phil 3:17-21; 4:1-3 \quad Gospel\ Matt 9:18-26 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 28 } \;\; {\scriptsize Thursday } \hfill \swatch{licolred}\par -{\bfseries Sts. Simon \& Jude }\par -{\scriptsize 2nd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Eph. 4:7-13. }\quad{\scriptsize Gospel\ John 15:17-25 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 28 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries Sts. Simon \& Jude }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Red \quad Epistle\ Eph. 4:7-13. \quad Gospel\ John 15:17-25 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 29 } \;\; {\scriptsize Friday } \hfill \swatch{licolgreen}\par -{\bfseries Friday of the 23rd Week of the Time after Pentecost }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Phil 3:17-21; 4:1-3 }\quad{\scriptsize Gospel\ Matt 9:18-26 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 29 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Friday of the 23rd Week of the Time after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ Phil 3:17-21; 4:1-3 \quad Gospel\ Matt 9:18-26 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 30 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par -{\bfseries Our Lady's Saturday Office }\par -{\scriptsize 4th Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Ecclus 24:14-16 }\quad{\scriptsize Gospel\ Luke 11:27-28 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 30 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Our Lady's Saturday Office }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ White \quad Epistle\ Ecclus 24:14-16 \quad Gospel\ Luke 11:27-28 } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w10-6} {\bfseries\large October }\hfill{\small Week 6}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 31 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par -{\bfseries Christ the King }\par -{\scriptsize 1st Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Col 1:12-20. }\quad{\scriptsize Gospel\ John 18:33-37 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 31 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Christ the King }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ White \quad Epistle\ Col 1:12-20. \quad Gospel\ John 18:33-37 } \end{tcolorbox} @@ -3634,332 +3527,316 @@ -\clearpage +\vspace{1mm} + +\needspace{29mm} +\vspace{2mm}\noindent\rule{\linewidth}{1pt}\par\vspace{0.8mm} +{\LARGE\bfseries November 2027 }\par\vspace{1mm} + +\needspace{16mm} \label{w11-1} {\bfseries\large November }\hfill{\small Week 1}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 1 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par -{\bfseries All Saints }\par -{\scriptsize 1st Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Apoc 7:2-12 }\quad{\scriptsize Gospel\ Matt 5:1-12 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 1 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries All Saints }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ White \quad Epistle\ Apoc 7:2-12 \quad Gospel\ Matt 5:1-12 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 2 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolblack}\par -{\bfseries Commemoration of All Souls }\par -{\scriptsize 1st Class \textperiodcentered\ Black }\par -{\scriptsize Epistle\ 1 Cor. 15:51-57 }\quad{\scriptsize Gospel\ John 5:25-29 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 2 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolblack}\par +{\fontsize{9}{10.2}\selectfont\bfseries Commemoration of All Souls }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ Black \quad Epistle\ 1 Cor. 15:51-57 \quad Gospel\ John 5:25-29 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 3 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolgreen}\par -{\bfseries Wednesday of the 24th Week of the Time after Pentecost }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Col 1:12-20. }\quad{\scriptsize Gospel\ John 18:33-37 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 3 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Wednesday of the 24th Week of the Time after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ Col 1:12-20. \quad Gospel\ John 18:33-37 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 4 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par -{\bfseries St. Charles Borromeo }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Sir 44:16-27; 45:3-20 }\quad{\scriptsize Gospel\ Matt 25:14-23 } -\par{\scriptsize Commemoration\ Sts. Vitalis and Agricola, Martyrs } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 4 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Charles Borromeo }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Sir 44:16-27; 45:3-20 \quad Gospel\ Matt 25:14-23 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Sts. Vitalis and Agricola, Martyrs } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 5 } \;\; {\scriptsize Friday } \hfill \swatch{licolgreen}\par -{\bfseries Friday of the 24th Week of the Time after Pentecost }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Col 1:12-20. }\quad{\scriptsize Gospel\ John 18:33-37 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 5 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Friday of the 24th Week of the Time after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ Col 1:12-20. \quad Gospel\ John 18:33-37 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 6 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par -{\bfseries Our Lady's Saturday Office }\par -{\scriptsize 4th Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Ecclus 24:14-16 }\quad{\scriptsize Gospel\ Luke 11:27-28 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 6 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Our Lady's Saturday Office }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ White \quad Epistle\ Ecclus 24:14-16 \quad Gospel\ Luke 11:27-28 } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w11-2} {\bfseries\large November }\hfill{\small Week 2}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 7 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par -{\bfseries 5th Sunday after Epiphany }\par -{\scriptsize 2nd Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Col 3:12-17 }\quad{\scriptsize Gospel\ Matt 13:24-30 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 7 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries 5th Sunday after Epiphany }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Green \quad Epistle\ Col 3:12-17 \quad Gospel\ Matt 13:24-30 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 8 } \;\; {\scriptsize Monday } \hfill \swatch{licolgreen}\par -{\bfseries Monday of the 25th Week of the Time after Pentecost }\par -{\scriptsize 4th Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Col 3:12-17 }\quad{\scriptsize Gospel\ Matt 13:24-30 } -\par{\scriptsize Commemoration\ Four Holy Crowned Martyrs } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 8 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries Monday of the 25th Week of the Time after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ Green \quad Epistle\ Col 3:12-17 \quad Gospel\ Matt 13:24-30 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Four Holy Crowned Martyrs } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 9 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par -{\bfseries Dedication of the Archbasilica of Our Holy Savior }\par -{\scriptsize 2nd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Rev 21:2-5 }\quad{\scriptsize Gospel\ Luke 19:1-10 } -\par{\scriptsize Commemoration\ St. Theodore } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 9 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Dedication of the Archbasilica of Our Holy Savior }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ White \quad Epistle\ Rev 21:2-5 \quad Gospel\ Luke 19:1-10 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Theodore } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 10 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par -{\bfseries St. Andrew Avellino }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Sir 31:8-11 }\quad{\scriptsize Gospel\ Luke 12:35-40 } -\par{\scriptsize Commemoration\ Sts. Tryphonis, Respicii, et Nymphae } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 10 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Andrew Avellino }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Sir 31:8-11 \quad Gospel\ Luke 12:35-40 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Sts. Tryphonis, Respicii, et Nymphae } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 11 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par -{\bfseries St. Martin of Tours }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Sir 44:16-27; 45:3-20 }\quad{\scriptsize Gospel\ Luke 11:33-36 } -\par{\scriptsize Commemoration\ St. Menna } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 11 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Martin of Tours }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Sir 44:16-27; 45:3-20 \quad Gospel\ Luke 11:33-36 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Menna } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 12 } \;\; {\scriptsize Friday } \hfill \swatch{licolred}\par -{\bfseries St. Martin I }\par -{\scriptsize 3rd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ 1 Pet 5:1-4; 5:10-11. }\quad{\scriptsize Gospel\ Matt 16:13-19 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 12 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Martin I }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Red \quad Epistle\ 1 Pet 5:1-4; 5:10-11. \quad Gospel\ Matt 16:13-19 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 13 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par -{\bfseries St. Didacus }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 1 Cor 4:9-14 }\quad{\scriptsize Gospel\ Luke 12:32-34 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 13 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Didacus }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 1 Cor 4:9-14 \quad Gospel\ Luke 12:32-34 } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w11-3} {\bfseries\large November }\hfill{\small Week 3}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 14 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par -{\bfseries 6th Sunday after Epiphany }\par -{\scriptsize 2nd Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ 1 Thess 1:2-10 }\quad{\scriptsize Gospel\ Matt 13:31-35 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 14 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries 6th Sunday after Epiphany }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Green \quad Epistle\ 1 Thess 1:2-10 \quad Gospel\ Matt 13:31-35 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 15 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par -{\bfseries St. Albert the Great }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 15 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Albert the Great }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 2 Tim 4:1-8 \quad Gospel\ Matt 5:13-19 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 16 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par -{\bfseries St. Gertrude the Great }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 2 Cor 10:17-18; 11:1-2 }\quad{\scriptsize Gospel\ Matt 25:1-13. } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 16 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Gertrude the Great }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 2 Cor 10:17-18; 11:1-2 \quad Gospel\ Matt 25:1-13. } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 17 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par -{\bfseries St. Gregory the Wonderworker }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Sir 44:16-27; 45:3-20 }\quad{\scriptsize Gospel\ Mark 11:22-24 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 17 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Gregory the Wonderworker }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Sir 44:16-27; 45:3-20 \quad Gospel\ Mark 11:22-24 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 18 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par -{\bfseries Dedication of the Basilicas of Sts. Peter \& Paul }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Rev 21:2-5 }\quad{\scriptsize Gospel\ Luke 19:1-10 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 18 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Dedication of the Basilicas of Sts. Peter \& Paul }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Rev 21:2-5 \quad Gospel\ Luke 19:1-10 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 19 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par -{\bfseries St. Elizabeth of Hungary }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Prov 31:10-31 }\quad{\scriptsize Gospel\ Matt 13:44-52. } -\par{\scriptsize Commemoration\ St. Pontian } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 19 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Elizabeth of Hungary }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Prov 31:10-31 \quad Gospel\ Matt 13:44-52. } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Pontian } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 20 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par -{\bfseries St. Felix of Valois }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 1 Cor. 4:9-14 }\quad{\scriptsize Gospel\ Luke 12:32-34 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 20 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Felix of Valois }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 1 Cor. 4:9-14 \quad Gospel\ Luke 12:32-34 } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w11-4} {\bfseries\large November }\hfill{\small Week 4}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 21 } \;\; {\scriptsize Sunday } \hfill \swatch{licolgreen}\par -{\bfseries 24th and Last Sunday after Pentecost }\par -{\scriptsize 2nd Class \textperiodcentered\ Green }\par -{\scriptsize Epistle\ Col 1:9-14 }\quad{\scriptsize Gospel\ Matt 24:15-35 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 21 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolgreen}\par +{\fontsize{9}{10.2}\selectfont\bfseries 24th and Last Sunday after Pentecost }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Green \quad Epistle\ Col 1:9-14 \quad Gospel\ Matt 24:15-35 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 22 } \;\; {\scriptsize Monday } \hfill \swatch{licolred}\par -{\bfseries St. Cecilia }\par -{\scriptsize 3rd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Sir 51:13-17. }\quad{\scriptsize Gospel\ Matt 25:1-13. } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 22 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Cecilia }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Red \quad Epistle\ Sir 51:13-17. \quad Gospel\ Matt 25:1-13. } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 23 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par -{\bfseries St. Clement I }\par -{\scriptsize 3rd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Phil 3:17-21; 4:1-3 }\quad{\scriptsize Gospel\ Matt 16:13-19 } -\par{\scriptsize Commemoration\ St. Felicity } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 23 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Clement I }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Red \quad Epistle\ Phil 3:17-21; 4:1-3 \quad Gospel\ Matt 16:13-19 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Felicity } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 24 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par -{\bfseries St. John of the Cross }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 } -\par{\scriptsize Commemoration\ St. Chrysogonus } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 24 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. John of the Cross }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 2 Tim 4:1-8 \quad Gospel\ Matt 5:13-19 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Chrysogonus } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 25 } \;\; {\scriptsize Thursday } \hfill \swatch{licolred}\par -{\bfseries St. Catherine of Alexandria }\par -{\scriptsize 3rd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Sir 51:1-8; 51:12 }\quad{\scriptsize Gospel\ Matt 25:1-13. } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 25 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Catherine of Alexandria }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Red \quad Epistle\ Sir 51:1-8; 51:12 \quad Gospel\ Matt 25:1-13. } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 26 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par -{\bfseries St. Sylvester }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Ecclus 45:1-6 }\quad{\scriptsize Gospel\ Matt 19:27-29. } -\par{\scriptsize Commemoration\ St. Peter of Alexandria } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 26 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Sylvester }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Ecclus 45:1-6 \quad Gospel\ Matt 19:27-29. } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Peter of Alexandria } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 27 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par -{\bfseries Our Lady's Saturday Office }\par -{\scriptsize 4th Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Ecclus 24:14-16 }\quad{\scriptsize Gospel\ Luke 11:27-28 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 27 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Our Lady's Saturday Office }\par +{\fontsize{6.5}{7.4}\selectfont 4th Class \textperiodcentered\ White \quad Epistle\ Ecclus 24:14-16 \quad Gospel\ Luke 11:27-28 } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w11-5} {\bfseries\large November }\hfill{\small Week 5}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 28 } \;\; {\scriptsize Sunday } \hfill \swatch{licolviolet}\par -{\bfseries 1st Sunday of Advent }\par -{\scriptsize 1st Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Rom 13:11-14 }\quad{\scriptsize Gospel\ Luke 21:25-33 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 28 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries 1st Sunday of Advent }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ Violet \quad Epistle\ Rom 13:11-14 \quad Gospel\ Luke 21:25-33 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 29 } \;\; {\scriptsize Monday } \hfill \swatch{licolviolet}\par -{\bfseries Monday of the 1st Week of Advent }\par -{\scriptsize 3rd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Rom 13:11-14 }\quad{\scriptsize Gospel\ Luke 21:25-33 } -\par{\scriptsize Commemoration\ St. Saturninus } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 29 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Monday of the 1st Week of Advent }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Violet \quad Epistle\ Rom 13:11-14 \quad Gospel\ Luke 21:25-33 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Saturninus } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 30 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par -{\bfseries St. Andrew }\par -{\scriptsize 2nd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Rom 10:10-18 }\quad{\scriptsize Gospel\ Matt 4:18-22 } -\par{\scriptsize Commemoration\ Tuesday of the 1st Week of Advent } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 30 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Andrew }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Red \quad Epistle\ Rom 10:10-18 \quad Gospel\ Matt 4:18-22 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Tuesday of the 1st Week of Advent } \end{tcolorbox} @@ -3971,10 +3848,16 @@ -\clearpage +\vspace{1mm} + +\needspace{29mm} +\vspace{2mm}\noindent\rule{\linewidth}{1pt}\par\vspace{0.8mm} +{\LARGE\bfseries December 2027 }\par\vspace{1mm} + +\needspace{16mm} \label{w12-1} {\bfseries\large December }\hfill{\small Week 1}\par\vspace{0.5mm} @@ -3985,338 +3868,315 @@ -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 1 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolviolet}\par -{\bfseries Wednesday of the 1st Week of Advent }\par -{\scriptsize 3rd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Rom 13:11-14 }\quad{\scriptsize Gospel\ Luke 21:25-33 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 1 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Wednesday of the 1st Week of Advent }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Violet \quad Epistle\ Rom 13:11-14 \quad Gospel\ Luke 21:25-33 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 2 } \;\; {\scriptsize Thursday } \hfill \swatch{licolred}\par -{\bfseries St. Vivian }\par -{\scriptsize 3rd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Sir 51:13-17. }\quad{\scriptsize Gospel\ Matt 13:44-52. } -\par{\scriptsize Commemoration\ Thursday of the 1st Week of Advent } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 2 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Vivian }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Red \quad Epistle\ Sir 51:13-17. \quad Gospel\ Matt 13:44-52. } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Thursday of the 1st Week of Advent } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 3 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par -{\bfseries St. Francis Xavier }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Rom 10:10-18 }\quad{\scriptsize Gospel\ Mark 16:15-18 } -\par{\scriptsize Commemoration\ Friday of the 1st Week of Advent } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 3 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Francis Xavier }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Rom 10:10-18 \quad Gospel\ Mark 16:15-18 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Friday of the 1st Week of Advent } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 4 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par -{\bfseries St. Peter Chrysologus }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 } -\par{\scriptsize Commemoration\ Saturday of the 1st Week of Advent }\par{\scriptsize Commemoration\ St. Barbara } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 4 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Peter Chrysologus }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 2 Tim 4:1-8 \quad Gospel\ Matt 5:13-19 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Saturday of the 1st Week of Advent }\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Barbara } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w12-2} {\bfseries\large December }\hfill{\small Week 2}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 5 } \;\; {\scriptsize Sunday } \hfill \swatch{licolviolet}\par -{\bfseries 2nd Sunday of Advent }\par -{\scriptsize 1st Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Rom 15:4-13 }\quad{\scriptsize Gospel\ Matt 11:2-10 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 5 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries 2nd Sunday of Advent }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ Violet \quad Epistle\ Rom 15:4-13 \quad Gospel\ Matt 11:2-10 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 6 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par -{\bfseries St. Nicholas }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Heb 13:7-17 }\quad{\scriptsize Gospel\ Matt 25:14-23 } -\par{\scriptsize Commemoration\ Monday of the 2nd Week of Advent } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 6 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Nicholas }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ Heb 13:7-17 \quad Gospel\ Matt 25:14-23 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Monday of the 2nd Week of Advent } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 7 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolwhite}\par -{\bfseries St. Ambrose }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 2 Tim 4:1-8 }\quad{\scriptsize Gospel\ Matt 5:13-19 } -\par{\scriptsize Commemoration\ Tuesday of the 2nd Week of Advent } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 7 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Ambrose }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 2 Tim 4:1-8 \quad Gospel\ Matt 5:13-19 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Tuesday of the 2nd Week of Advent } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 8 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par -{\bfseries Immaculate Conception of the Blessed Virgin Mary }\par -{\scriptsize 1st Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Prov 8:22-35 }\quad{\scriptsize Gospel\ Luke 1:26-28 } -\par{\scriptsize Commemoration\ Wednesday of the 2nd Week of Advent } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 8 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Immaculate Conception of the Blessed Virgin Mary }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ White \quad Epistle\ Prov 8:22-35 \quad Gospel\ Luke 1:26-28 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Wednesday of the 2nd Week of Advent } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 9 } \;\; {\scriptsize Thursday } \hfill \swatch{licolviolet}\par -{\bfseries Thursday of the 2nd Week of Advent }\par -{\scriptsize 3rd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Rom 15:4-13 }\quad{\scriptsize Gospel\ Matt 11:2-10 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 9 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Thursday of the 2nd Week of Advent }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Violet \quad Epistle\ Rom 15:4-13 \quad Gospel\ Matt 11:2-10 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 10 } \;\; {\scriptsize Friday } \hfill \swatch{licolviolet}\par -{\bfseries Friday of the 2nd Week of Advent }\par -{\scriptsize 3rd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Rom 15:4-13 }\quad{\scriptsize Gospel\ Matt 11:2-10 } -\par{\scriptsize Commemoration\ St. Melchiades } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 10 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Friday of the 2nd Week of Advent }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Violet \quad Epistle\ Rom 15:4-13 \quad Gospel\ Matt 11:2-10 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Melchiades } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 11 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par -{\bfseries St. Damasus I }\par -{\scriptsize 3rd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ 1 Pet 5:1-4; 5:10-11. }\quad{\scriptsize Gospel\ Matt 16:13-19 } -\par{\scriptsize Commemoration\ Saturday of the 2nd Week of Advent } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 11 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Damasus I }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ White \quad Epistle\ 1 Pet 5:1-4; 5:10-11. \quad Gospel\ Matt 16:13-19 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Saturday of the 2nd Week of Advent } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w12-3} {\bfseries\large December }\hfill{\small Week 3}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 12 } \;\; {\scriptsize Sunday } \hfill \swatch{licolrose}\par -{\bfseries 3rd Sunday of Advent }\par -{\scriptsize 1st Class \textperiodcentered\ Rose }\par -{\scriptsize Epistle\ Phil 4:4-7 }\quad{\scriptsize Gospel\ John 1:19-28 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 12 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolrose}\par +{\fontsize{9}{10.2}\selectfont\bfseries 3rd Sunday of Advent }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ Rose \quad Epistle\ Phil 4:4-7 \quad Gospel\ John 1:19-28 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 13 } \;\; {\scriptsize Monday } \hfill \swatch{licolred}\par -{\bfseries St. Lucy }\par -{\scriptsize 3rd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ 2 Cor 10:17-18; 11:1-2 }\quad{\scriptsize Gospel\ Matt 13:44-52. } -\par{\scriptsize Commemoration\ Monday of the 3rd Week of Advent } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 13 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Lucy }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Red \quad Epistle\ 2 Cor 10:17-18; 11:1-2 \quad Gospel\ Matt 13:44-52. } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Monday of the 3rd Week of Advent } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 14 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolviolet}\par -{\bfseries Tuesday of the 3rd Week of Advent }\par -{\scriptsize 3rd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Phil 4:4-7 }\quad{\scriptsize Gospel\ John 1:19-28 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 14 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Tuesday of the 3rd Week of Advent }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Violet \quad Epistle\ Phil 4:4-7 \quad Gospel\ John 1:19-28 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 15 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolviolet}\par -{\bfseries Advent Ember Wednesday }\par -{\scriptsize 2nd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Isa 7:10-15 }\quad{\scriptsize Gospel\ Luke 1:26-38 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 15 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Advent Ember Wednesday }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Violet \quad Epistle\ Isa 7:10-15 \quad Gospel\ Luke 1:26-38 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 16 } \;\; {\scriptsize Thursday } \hfill \swatch{licolred}\par -{\bfseries St. Eusebius }\par -{\scriptsize 3rd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ 2 Cor. 1:3-7 }\quad{\scriptsize Gospel\ Matt 16:24-27. } -\par{\scriptsize Commemoration\ Thursday of the 3rd Week of Advent } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 16 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Eusebius }\par +{\fontsize{6.5}{7.4}\selectfont 3rd Class \textperiodcentered\ Red \quad Epistle\ 2 Cor. 1:3-7 \quad Gospel\ Matt 16:24-27. } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Thursday of the 3rd Week of Advent } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 17 } \;\; {\scriptsize Friday } \hfill \swatch{licolviolet}\par -{\bfseries Advent Ember Friday }\par -{\scriptsize 2nd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Isa 11:1-5 }\quad{\scriptsize Gospel\ Luke 1:39-47 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 17 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Advent Ember Friday }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Violet \quad Epistle\ Isa 11:1-5 \quad Gospel\ Luke 1:39-47 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 18 } \;\; {\scriptsize Saturday } \hfill \swatch{licolviolet}\par -{\bfseries Advent Ember Saturday }\par -{\scriptsize 2nd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ 2 Thess 2:1-8 }\quad{\scriptsize Gospel\ Luke 3:1-6 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 18 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Advent Ember Saturday }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Violet \quad Epistle\ 2 Thess 2:1-8 \quad Gospel\ Luke 3:1-6 } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w12-4} {\bfseries\large December }\hfill{\small Week 4}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 19 } \;\; {\scriptsize Sunday } \hfill \swatch{licolviolet}\par -{\bfseries 4th Sunday of Advent }\par -{\scriptsize 1st Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ 1 Cor. 4:1-5 }\quad{\scriptsize Gospel\ Luke 3:1-6 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 19 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries 4th Sunday of Advent }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ Violet \quad Epistle\ 1 Cor. 4:1-5 \quad Gospel\ Luke 3:1-6 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 20 } \;\; {\scriptsize Monday } \hfill \swatch{licolviolet}\par -{\bfseries Monday of the 4th Week of Advent }\par -{\scriptsize 2nd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ 1 Cor. 4:1-5 }\quad{\scriptsize Gospel\ Luke 3:1-6 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 20 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Monday of the 4th Week of Advent }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Violet \quad Epistle\ 1 Cor. 4:1-5 \quad Gospel\ Luke 3:1-6 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 21 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par -{\bfseries St. Thomas }\par -{\scriptsize 2nd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Eph 2:19-22 }\quad{\scriptsize Gospel\ John 20:24-29 } -\par{\scriptsize Commemoration\ Tuesday of the 4th Week of Advent } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 21 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. Thomas }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Red \quad Epistle\ Eph 2:19-22 \quad Gospel\ John 20:24-29 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ Tuesday of the 4th Week of Advent } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 22 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolviolet}\par -{\bfseries Wednesday of the 4th Week of Advent }\par -{\scriptsize 2nd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ 1 Cor. 4:1-5 }\quad{\scriptsize Gospel\ Luke 3:1-6 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 22 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Wednesday of the 4th Week of Advent }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Violet \quad Epistle\ 1 Cor. 4:1-5 \quad Gospel\ Luke 3:1-6 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 23 } \;\; {\scriptsize Thursday } \hfill \swatch{licolviolet}\par -{\bfseries Thursday of the 4th Week of Advent }\par -{\scriptsize 2nd Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ 1 Cor. 4:1-5 }\quad{\scriptsize Gospel\ Luke 3:1-6 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 23 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Thursday of the 4th Week of Advent }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Violet \quad Epistle\ 1 Cor. 4:1-5 \quad Gospel\ Luke 3:1-6 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 24 } \;\; {\scriptsize Friday } \hfill \swatch{licolviolet}\par -{\bfseries Vigil of the Nativity (Christmas Eve) }\par -{\scriptsize 1st Class \textperiodcentered\ Violet }\par -{\scriptsize Epistle\ Rom 1:1-6 }\quad{\scriptsize Gospel\ Matt 1:18-21 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 24 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolviolet}\par +{\fontsize{9}{10.2}\selectfont\bfseries Vigil of the Nativity (Christmas Eve) }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ Violet \quad Epistle\ Rom 1:1-6 \quad Gospel\ Matt 1:18-21 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 25 } \;\; {\scriptsize Saturday } \hfill \swatch{licolwhite}\par -{\bfseries The Nativity of Our Lord (Christmas) }\par -{\scriptsize 1st Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Heb 1:1-12 }\quad{\scriptsize Gospel\ John 1:1-14 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 25 } \;{\fontsize{6.5}{7.4}\selectfont Saturday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries The Nativity of Our Lord (Christmas) }\par +{\fontsize{6.5}{7.4}\selectfont 1st Class \textperiodcentered\ White \quad Epistle\ Heb 1:1-12 \quad Gospel\ John 1:1-14 } \end{tcolorbox} -\clearpage +\vspace{1mm} + +\needspace{16mm} \label{w12-5} {\bfseries\large December }\hfill{\small Week 5}\par\vspace{0.5mm} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 26 } \;\; {\scriptsize Sunday } \hfill \swatch{licolwhite}\par -{\bfseries Sunday within the Octave of the Nativity }\par -{\scriptsize 2nd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Gal 4:1-7 }\quad{\scriptsize Gospel\ Luke 2:33-40 } -\par{\scriptsize Commemoration\ St. Stephen } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 26 } \;{\fontsize{6.5}{7.4}\selectfont Sunday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries Sunday within the Octave of the Nativity }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ White \quad Epistle\ Gal 4:1-7 \quad Gospel\ Luke 2:33-40 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Stephen } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 27 } \;\; {\scriptsize Monday } \hfill \swatch{licolwhite}\par -{\bfseries St. John the Evangelist }\par -{\scriptsize 2nd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Ecclus 15:1-6 }\quad{\scriptsize Gospel\ John 21:19-24 } -\par{\scriptsize Commemoration\ 3rd Day within the Octave of the Nativity } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 27 } \;{\fontsize{6.5}{7.4}\selectfont Monday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries St. John the Evangelist }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ White \quad Epistle\ Ecclus 15:1-6 \quad Gospel\ John 21:19-24 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ 3rd Day within the Octave of the Nativity } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 28 } \;\; {\scriptsize Tuesday } \hfill \swatch{licolred}\par -{\bfseries Holy Innocents }\par -{\scriptsize 2nd Class \textperiodcentered\ Red }\par -{\scriptsize Epistle\ Apoc 14:1-5 }\quad{\scriptsize Gospel\ Matt 2:13-18 } -\par{\scriptsize Commemoration\ 4th Day within the Octave of the Nativity } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 28 } \;{\fontsize{6.5}{7.4}\selectfont Tuesday }\hfill\swatch{licolred}\par +{\fontsize{9}{10.2}\selectfont\bfseries Holy Innocents }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ Red \quad Epistle\ Apoc 14:1-5 \quad Gospel\ Matt 2:13-18 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ 4th Day within the Octave of the Nativity } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 29 } \;\; {\scriptsize Wednesday } \hfill \swatch{licolwhite}\par -{\bfseries 5th Day within the Octave of the Nativity }\par -{\scriptsize 2nd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Titus 3:4-7 }\quad{\scriptsize Gospel\ Luke 2:15-20 } -\par{\scriptsize Commemoration\ St. Thomas Becket } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 29 } \;{\fontsize{6.5}{7.4}\selectfont Wednesday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries 5th Day within the Octave of the Nativity }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ White \quad Epistle\ Titus 3:4-7 \quad Gospel\ Luke 2:15-20 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Thomas Becket } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 30 } \;\; {\scriptsize Thursday } \hfill \swatch{licolwhite}\par -{\bfseries 6th Day within the Octave of the Nativity }\par -{\scriptsize 2nd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Titus 3:4-7 }\quad{\scriptsize Gospel\ Luke 2:15-20 } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 30 } \;{\fontsize{6.5}{7.4}\selectfont Thursday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries 6th Day within the Octave of the Nativity }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ White \quad Epistle\ Titus 3:4-7 \quad Gospel\ Luke 2:15-20 } \end{tcolorbox} -\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.4pt,left=1.6mm,right=1.6mm,top=0.4mm,bottom=0.4mm,before skip=0.5mm,after skip=0mm] -{\bfseries 31 } \;\; {\scriptsize Friday } \hfill \swatch{licolwhite}\par -{\bfseries 7th Day within the Octave of the Nativity }\par -{\scriptsize 2nd Class \textperiodcentered\ White }\par -{\scriptsize Epistle\ Titus 3:4-7 }\quad{\scriptsize Gospel\ Luke 2:15-20 } -\par{\scriptsize Commemoration\ St. Silvester } +\begin{tcolorbox}[colback=white,colframe=black!35,boxrule=0.3pt,left=1.4mm,right=1.4mm,top=0.2mm,bottom=0.2mm,before skip=0.2mm,after skip=0mm] +{\bfseries 31 } \;{\fontsize{6.5}{7.4}\selectfont Friday }\hfill\swatch{licolwhite}\par +{\fontsize{9}{10.2}\selectfont\bfseries 7th Day within the Octave of the Nativity }\par +{\fontsize{6.5}{7.4}\selectfont 2nd Class \textperiodcentered\ White \quad Epistle\ Titus 3:4-7 \quad Gospel\ Luke 2:15-20 } +\par{\fontsize{6.5}{7.4}\selectfont Commemoration\ St. Silvester } \end{tcolorbox} -\clearpage +\vspace{1mm} \end{document} diff --git a/test/golden/ordo-2027.txt b/test/golden/ordo-2027.txt index 1dc4209..2fdfc4b 100644 --- a/test/golden/ordo-2027.txt +++ b/test/golden/ordo-2027.txt @@ -1,6 +1,8 @@ January 2027 +== Week 1 == + 1 The Octave Day of the Nativity class-1 · white Epistle Titus 2:11-15 @@ -11,6 +13,9 @@ January 2027 Epistle Titus 3:4-7 Gospel Luke 2:15-20 + +== Week 2 == + 3 The Holy Name of Jesus class-2 · white Epistle Acts 4:8-12 @@ -47,6 +52,9 @@ January 2027 Epistle Titus 3:4-7 Gospel Luke 2:15-20 + +== Week 3 == + 10 The Holy Family class-2 · white Epistle Col 3:12-17 @@ -85,6 +93,9 @@ January 2027 Epistle 1 Pet 5:1-4; 5:10-11. Gospel Matt 16:13-19 + +== Week 4 == + 17 2nd Sunday after Epiphany class-2 · green Epistle Rom 12:6-16 @@ -124,6 +135,9 @@ January 2027 Gospel Luke 12:35-40 Commemoration St. Emerentiana + +== Week 5 == + 24 Septuagesima Sunday class-2 · violet Epistle 1 Cor. 9:24-27; 10:1-5 @@ -161,14 +175,20 @@ January 2027 Epistle Sir 51:1-8; 51:12 Gospel Matt 25:1-13. + +== Week 6 == + 31 Sexagesima Sunday class-2 · violet Epistle 2 Cor. 11:19-33; 12:1-9 Gospel Luke 8:4-15 + February 2027 +== Week 1 == + 1 St. Ignatius of Antioch class-3 · red Epistle Rom 8:35-39 @@ -201,6 +221,9 @@ February 2027 Gospel Luke 10:1-9 Commemoration St. Dorothy + +== Week 2 == + 7 Quinquagesima Sunday class-2 · violet Epistle 1 Cor. 13:1-13 @@ -239,6 +262,9 @@ February 2027 Epistle Isa 58:9-14 Gospel Mark 6:47-56 + +== Week 3 == + 14 1st Sunday of Lent class-1 · violet Epistle 2 Cor. 6:1-10 @@ -276,6 +302,9 @@ February 2027 Epistle 1 Thess. 5:14-23 Gospel Matt 17:1-9 + +== Week 4 == + 21 2nd Sunday of Lent class-1 · violet Epistle 1 Thess. 4:1-7 @@ -316,14 +345,20 @@ February 2027 Gospel Luke 15:11-32 Commemoration St. Gabriel of Our Lady of Sorrows + +== Week 5 == + 28 3rd Sunday of Lent class-1 · violet Epistle Eph 5:1-9 Gospel Luke 11:14-28 + March 2027 +== Week 1 == + 1 Monday of the 3rd Week of Lent class-3 · violet Epistle 4 Kings 5:1-15 @@ -357,6 +392,9 @@ March 2027 Gospel John 8:1-11 Commemoration Sts. Felicitas & Perpetua + +== Week 2 == + 7 4th Sunday of Lent class-1 · rose Epistle Gal 4:22-31 @@ -396,6 +434,9 @@ March 2027 Epistle Isa 49:8-15 Gospel John 8:12-20 + +== Week 3 == + 14 Passion Sunday class-1 · violet Epistle Heb 9:11-15. @@ -434,6 +475,9 @@ March 2027 Epistle Jer 18:18-23 Gospel John 12:10-36 + +== Week 4 == + 21 Palm Sunday class-1 · violet Epistle Phil 2:5-11 @@ -469,6 +513,9 @@ March 2027 Epistle Col 3:1-4 Gospel Matt 28:1-7 + +== Week 5 == + 28 Easter Sunday class-1 · white Epistle 1 Cor 5:7-8 @@ -490,8 +537,11 @@ March 2027 Gospel John 21:1-14 + April 2027 +== Week 1 == + 1 Thursday of Easter Week class-1 · white Epistle Acts 8:26-40 @@ -507,6 +557,9 @@ April 2027 Epistle 1 Pet 2:1-10 Gospel John 20:1-9 + +== Week 2 == + 4 Low Sunday (Sunday in Easter Octave) class-1 · white Epistle 1 John 5:4-10 @@ -542,6 +595,9 @@ April 2027 Epistle Ecclus 24:14-16 Gospel John 19:25-27 + +== Week 3 == + 11 2nd Sunday after Easter class-2 · white Epistle 1 Pet 2:21-25 @@ -579,6 +635,9 @@ April 2027 Gospel John 19:25-27 Commemoration St. Anicetus + +== Week 4 == + 18 3rd Sunday after Easter class-2 · white Epistle 1 Pet 2:11-19 @@ -615,6 +674,9 @@ April 2027 Epistle Wis 5:1-5 Gospel John 15:1-7 + +== Week 5 == + 25 4th Sunday after Easter class-2 · white Epistle Jas 1:17-21 @@ -647,13 +709,19 @@ April 2027 Gospel Matt 25:1-13. + May 2027 +== Week 1 == + 1 St. Joseph the Workman class-1 · white Epistle Col. 3:14-15, 17, 23-24 Gospel Matt 13:54-58 + +== Week 2 == + 2 5th Sunday after Easter class-2 · white Epistle Jas 1:22-27 @@ -691,6 +759,9 @@ May 2027 Epistle Ecclus 24:14-16 Gospel John 19:25-27 + +== Week 3 == + 9 Sunday after the Ascension class-2 · white Epistle 1 Pet 4:7-11. @@ -728,6 +799,9 @@ May 2027 Epistle Acts 19:1-8. Gospel John 14:15-21. + +== Week 4 == + 16 Pentecost Sunday (Whitsunday) class-1 · red Epistle Acts 2:1-11. @@ -763,6 +837,9 @@ May 2027 Epistle Rom 5:1-5. Gospel Luke 4:38-44. + +== Week 5 == + 23 Trinity Sunday class-1 · white Epistle Rom 11:33-36. @@ -800,6 +877,9 @@ May 2027 Epistle 2 Cor 10:17-18; 11:1-2 Gospel Matt 25:1-13. + +== Week 6 == + 30 2nd Sunday after Pentecost class-2 · green Epistle 1 John 3:13-18. @@ -812,8 +892,11 @@ May 2027 Commemoration St. Petronilla + June 2027 +== Week 1 == + 1 St. Angela Merici class-3 · white Epistle 2 Cor 10:17-18; 11:1-2 @@ -840,6 +923,9 @@ June 2027 Epistle Ecclus 44:1-15 Gospel Matt 5:1-12 + +== Week 2 == + 6 3rd Sunday after Pentecost class-2 · green Epistle 1 Pet. 5:6-11 @@ -877,6 +963,9 @@ June 2027 Gospel Luke 12:35-40 Commemoration St. Basilidus + +== Week 3 == + 13 4th Sunday after Pentecost class-2 · green Epistle Rom 8:18-23 @@ -915,6 +1004,9 @@ June 2027 Gospel Matt 25:1-13. Commemoration Sts. Gervasius and Protasius + +== Week 4 == + 20 5th Sunday after Pentecost class-2 · green Epistle 1 Pet 3:8-15. @@ -950,6 +1042,9 @@ June 2027 Epistle Eccli 44:10-15 Gospel Luke 12:1-8 + +== Week 5 == + 27 6th Sunday after Pentecost class-2 · green Epistle Rom 6:3-11. @@ -972,8 +1067,11 @@ June 2027 Commemoration St. Peter + July 2027 +== Week 1 == + 1 The Precious Blood of Our Lord Jesus Christ class-1 · red Epistle Heb 9:11-15. @@ -990,6 +1088,9 @@ July 2027 Epistle 2 Tim. 3:14-17; 4:1-5 Gospel Matt 10:28-33 + +== Week 2 == + 4 7th Sunday after Pentecost class-2 · green Epistle Rom 6:19-23 @@ -1025,6 +1126,9 @@ July 2027 Epistle Prov 31:10-31 Gospel Matt 12:46-50 + +== Week 3 == + 11 8th Sunday after Pentecost class-2 · green Epistle Rom 8:12-17 @@ -1063,6 +1167,9 @@ July 2027 Gospel Luke 11:27-28 Commemoration St. Alexis + +== Week 4 == + 18 9th Sunday after Pentecost class-2 · green Epistle 1 Cor. 10:6-13 @@ -1102,6 +1209,9 @@ July 2027 Gospel Luke 11:27-28 Commemoration St. Christina + +== Week 5 == + 25 10th Sunday after Pentecost class-2 · green Epistle 1 Cor. 12:2-11 @@ -1142,8 +1252,11 @@ July 2027 Gospel Luke 10:1-9 + August 2027 +== Week 1 == + 1 11th Sunday after Pentecost class-2 · green Epistle 1 Cor. 15:1-10 @@ -1182,6 +1295,9 @@ August 2027 Gospel Matt 6:24-33 Commemoration St. Donatus + +== Week 2 == + 8 12th Sunday after Pentecost class-2 · green Epistle 2 Cor. 3:4-9 @@ -1221,6 +1337,9 @@ August 2027 Gospel Luke 11:27-28 Commemoration St. Eusebius + +== Week 3 == + 15 Assumption of the Blessed Virgin Mary class-1 · white Epistle Judith 13:22-25; 15:10 @@ -1258,6 +1377,9 @@ August 2027 Epistle Prov 31:10-31 Gospel Matt 13:44-52. + +== Week 4 == + 22 14th Sunday after Pentecost class-2 · green Epistle Gal 5:16-24 @@ -1296,6 +1418,9 @@ August 2027 Gospel Matt 5:13-19 Commemoration St. Hermes + +== Week 5 == + 29 15th Sunday after Pentecost class-2 · green Epistle Gal 5:25-26; 6:1-10 @@ -1313,8 +1438,11 @@ August 2027 Gospel Luke 12:35-40 + September 2027 +== Week 1 == + 1 Wednesday of the 15th Week of the Time after Pentecost class-4 · green Epistle Gal 5:25-26; 6:1-10 @@ -1337,6 +1465,9 @@ September 2027 Epistle Ecclus 24:14-16 Gospel Luke 11:27-28 + +== Week 2 == + 5 16th Sunday after Pentecost class-2 · green Epistle Eph 3:13-21 @@ -1375,6 +1506,9 @@ September 2027 Gospel Luke 11:27-28 Commemoration Sts. Protus & Hyacinth + +== Week 3 == + 12 17th Sunday after Pentecost class-2 · green Epistle Eph 4:1-6 @@ -1413,6 +1547,9 @@ September 2027 Epistle 1 Cor 13:1-8 Gospel Matt 22:1-14 + +== Week 4 == + 19 18th Sunday after Pentecost class-2 · green Epistle 1 Cor. 1:4-8 @@ -1452,6 +1589,9 @@ September 2027 Epistle Heb 9:2-12 Gospel Luke 13:6-17 + +== Week 5 == + 26 19th Sunday after Pentecost class-2 · green Epistle Eph 4:23-28 @@ -1478,8 +1618,11 @@ September 2027 Gospel Matt 5:13-19 + October 2027 +== Week 1 == + 1 Friday of the 19th Week of the Time after Pentecost class-4 · green Epistle Eph 4:23-28 @@ -1491,6 +1634,9 @@ October 2027 Epistle Exod 23:20-23 Gospel Matt 18:1-10 + +== Week 2 == + 3 20th Sunday after Pentecost class-2 · green Epistle Eph 5:15-21 @@ -1530,6 +1676,9 @@ October 2027 Gospel Luke 10:1-9 Commemoration St. Dionysius and companions + +== Week 3 == + 10 21st Sunday after Pentecost class-2 · green Epistle Eph 6:10-17 @@ -1565,6 +1714,9 @@ October 2027 Epistle Prov 31:10-31 Gospel Matt 13:44-52. + +== Week 4 == + 17 22nd Sunday after Pentecost class-2 · green Epistle Phil 1:6-11 @@ -1602,6 +1754,9 @@ October 2027 Epistle Heb 7:23-27 Gospel Matt 24:42-47 + +== Week 5 == + 24 23rd Sunday after Pentecost class-2 · green Epistle Phil 3:17-21; 4:1-3 @@ -1639,14 +1794,20 @@ October 2027 Epistle Ecclus 24:14-16 Gospel Luke 11:27-28 + +== Week 6 == + 31 Christ the King class-1 · white Epistle Col 1:12-20. Gospel John 18:33-37 + November 2027 +== Week 1 == + 1 All Saints class-1 · white Epistle Apoc 7:2-12 @@ -1678,6 +1839,9 @@ November 2027 Epistle Ecclus 24:14-16 Gospel Luke 11:27-28 + +== Week 2 == + 7 5th Sunday after Epiphany class-2 · green Epistle Col 3:12-17 @@ -1717,6 +1881,9 @@ November 2027 Epistle 1 Cor 4:9-14 Gospel Luke 12:32-34 + +== Week 3 == + 14 6th Sunday after Epiphany class-2 · green Epistle 1 Thess 1:2-10 @@ -1753,6 +1920,9 @@ November 2027 Epistle 1 Cor. 4:9-14 Gospel Luke 12:32-34 + +== Week 4 == + 21 24th and Last Sunday after Pentecost class-2 · green Epistle Col 1:9-14 @@ -1791,6 +1961,9 @@ November 2027 Epistle Ecclus 24:14-16 Gospel Luke 11:27-28 + +== Week 5 == + 28 1st Sunday of Advent class-1 · violet Epistle Rom 13:11-14 @@ -1809,8 +1982,11 @@ November 2027 Commemoration Tuesday of the 1st Week of Advent + December 2027 +== Week 1 == + 1 Wednesday of the 1st Week of Advent class-3 · violet Epistle Rom 13:11-14 @@ -1835,6 +2011,9 @@ December 2027 Commemoration Saturday of the 1st Week of Advent Commemoration St. Barbara + +== Week 2 == + 5 2nd Sunday of Advent class-1 · violet Epistle Rom 15:4-13 @@ -1875,6 +2054,9 @@ December 2027 Gospel Matt 16:13-19 Commemoration Saturday of the 2nd Week of Advent + +== Week 3 == + 12 3rd Sunday of Advent class-1 · rose Epistle Phil 4:4-7 @@ -1912,6 +2094,9 @@ December 2027 Epistle 2 Thess 2:1-8 Gospel Luke 3:1-6 + +== Week 4 == + 19 4th Sunday of Advent class-1 · violet Epistle 1 Cor. 4:1-5 @@ -1948,6 +2133,9 @@ December 2027 Epistle Heb 1:1-12 Gospel John 1:1-14 + +== Week 5 == + 26 Sunday within the Octave of the Nativity class-2 · white Epistle Gal 4:1-7 @@ -1984,3 +2172,4 @@ December 2027 Commemoration St. Silvester + diff --git a/test/golden/ordo-2027.typ b/test/golden/ordo-2027.typ index 2f3cf92..73d32fc 100644 --- a/test/golden/ordo-2027.typ +++ b/test/golden/ordo-2027.typ @@ -8,12 +8,16 @@ // a genuine advantage of this flavour over ordo.tex, not merely a different // syntax for the same thing. // -// A5, one week per page, each day in a framed box with a colour swatch. -// Every fixed string (headings, the Epistle/Gospel/Commemoration/Week -// labels) comes from the view's term vocabulary rather than being written -// into this file, so a translated booklet needs no template edit -- only a -// different --lang. Same discipline as ordo.tex; see that file's own header -// for the full reasoning, repeated only where Typst changes it below. +// A5, CONTINUOUS (Defect 2): no forced page break per week any more -- +// see ordo.tex's own header for the measured "why" (a full 7-day week +// already fills most of an A5 page even tightened, so the real saving +// comes from the year's many SHORT boundary weeks no longer wasting a +// whole page each). Every fixed string (headings, the Epistle/Gospel/ +// Commemoration/Week labels) comes from the view's term vocabulary rather +// than being written into this file, so a translated booklet needs no +// template edit -- only a different --lang. Same discipline as ordo.tex; +// see that file's own header for the full reasoning, repeated only where +// Typst changes it below. // // The observed day's own display name is a PLAIN resolved string // (View.of_days), never a lang-keyed object, exactly as in every other @@ -42,12 +46,29 @@ // per month with its weeks dotted-and-paginated underneath, because it // walks the months-then-weeks nesting directly in its own hand-built TOC // loop. Typst's outline instead builds its table of contents automatically -// from real document headings, and there is no "is this the month's first -// week" flag in the view model for a template to test -- inventing one -// would be new engine state for a cosmetic grouping, not a real gap. Each -// week page therefore carries ONE flat heading, "Month . Week N", which is -// both what a reader sees at the top of that page and, automatically, its -// own single-line entry in the table of contents below. +// from real document headings, so this stays a flat list of "Month . Week +// N" headings rather than being restructured into two heading levels -- +// changing outline depth/structure is a bigger, riskier change than this +// defect calls for. Defect 2 DID add a "is this the month's first week" +// flag to the view model (lib/render/view.ml's own [first], the same +// "cheap flag beats invented template logic" call [last] already made +// elsewhere) -- used below for a separate, non-heading month BANNER +// printed just above that first week's own heading, not by restructuring +// the heading/outline itself. The banner's own sticky:true (separate from +// the heading show-rule's below) is needed for the identical reason: an +// early draft without it put "Aprilis 2027" alone at the very bottom of +// a page with the entire month below it on the next one -- not caught by +// a check for an orphaned HEADING (a banner is not one), only found by +// looking at the rendered page. Chaining two sticky blocks keeps +// banner+heading+first day box moving together. +// +// Each day box is tightened from an earlier draft (0.6mm inset, 0.42em +// leading, 7pt meta text on its own separate rank/colour line) for this +// same continuous flow -- see ordo.tex's own header for the measured +// reasoning, identical here: a full week already fills most of a page, +// so folding rank/colour onto the SAME line as the citations (this box +// is far wider than it is tall) is what buys back a second week's worth +// of room, not the font/inset trim alone. // // Colour swatch: the six colour names this rite emits (white, red, green, // violet, rose, black -- Colour.to_string's own closed vocabulary) are used @@ -65,9 +86,15 @@ ) #set text(size: 9pt) #set par(justify: false) +// sticky: true keeps a heading from being stranded alone at a page's +// bottom with its own week's first day box pushed to the next page -- +// Typst's own built-in answer to what ordo.tex needs \needspace (an +// external package) for. Verified live: a heading is provably never the +// LAST thing on a page anywhere in the rendered output (the task report +// has the scan). #show heading: it => { set text(size: 12pt, weight: "bold") - block(above: 3mm, below: 2mm)[#it.body] + block(above: 3mm, below: 2mm, sticky: true)[#it.body] } #let licol = ( @@ -92,6 +119,12 @@ + +#block(above: 2mm, below: 0mm, sticky: true)[ + #line(length: 100%, stroke: 0.6pt + luma(120)) + #text(size: 15pt, weight: "bold")[January 2027] +] + = January #sym.dot.c Week 1 @@ -106,657 +139,316 @@ -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[1] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[1] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("white") \ #text(weight: "bold")[The Octave Day of the Nativity] \ - #text(size: 7pt)[1st Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Titus 2:11\-15 #h(2mm) Gospel Luke 2:21] + #text(size: 6.5pt)[1st Class #sym.dot.c White #h(2mm) Epistle Titus 2:11\-15 #h(2mm) Gospel Luke 2:21] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[2] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[2] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Our Lady's Saturday Office] \ - #text(size: 7pt)[4th Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Titus 3:4\-7 #h(2mm) Gospel Luke 2:15\-20] + #text(size: 6.5pt)[4th Class #sym.dot.c White #h(2mm) Epistle Titus 3:4\-7 #h(2mm) Gospel Luke 2:15\-20] ] -#pagebreak(weak: true) + = January #sym.dot.c Week 2 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[3] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[3] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("white") \ #text(weight: "bold")[The Holy Name of Jesus] \ - #text(size: 7pt)[2nd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Acts 4:8\-12 #h(2mm) Gospel Luke 2:21] + #text(size: 6.5pt)[2nd Class #sym.dot.c White #h(2mm) Epistle Acts 4:8\-12 #h(2mm) Gospel Luke 2:21] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[4] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[4] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Monday before Epiphany] \ - #text(size: 7pt)[4th Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Titus 2:11\-15 #h(2mm) Gospel Luke 2:21] + #text(size: 6.5pt)[4th Class #sym.dot.c White #h(2mm) Epistle Titus 2:11\-15 #h(2mm) Gospel Luke 2:21] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[5] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[5] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Tuesday before Epiphany] \ - #text(size: 7pt)[4th Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Titus 2:11\-15 #h(2mm) Gospel Luke 2:21] \ - #text(size: 7pt)[Commemoration St. Telesphorus Pope and Martyr] + #text(size: 6.5pt)[4th Class #sym.dot.c White #h(2mm) Epistle Titus 2:11\-15 #h(2mm) Gospel Luke 2:21] \ + #text(size: 6.5pt)[Commemoration St. Telesphorus Pope and Martyr] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[6] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[6] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[The Epiphany of Our Lord] \ - #text(size: 7pt)[1st Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Isa 60:1\-6 #h(2mm) Gospel Matt 2:1\-12] + #text(size: 6.5pt)[1st Class #sym.dot.c White #h(2mm) Epistle Isa 60:1\-6 #h(2mm) Gospel Matt 2:1\-12] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[7] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[7] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Thursday after Epiphany] \ - #text(size: 7pt)[4th Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Isa 60:1\-6 #h(2mm) Gospel Matt 2:1\-12] + #text(size: 6.5pt)[4th Class #sym.dot.c White #h(2mm) Epistle Isa 60:1\-6 #h(2mm) Gospel Matt 2:1\-12] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[8] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[8] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Friday after Epiphany] \ - #text(size: 7pt)[4th Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Isa 60:1\-6 #h(2mm) Gospel Matt 2:1\-12] + #text(size: 6.5pt)[4th Class #sym.dot.c White #h(2mm) Epistle Isa 60:1\-6 #h(2mm) Gospel Matt 2:1\-12] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[9] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[9] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Our Lady's Saturday Office] \ - #text(size: 7pt)[4th Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Titus 3:4\-7 #h(2mm) Gospel Luke 2:15\-20] + #text(size: 6.5pt)[4th Class #sym.dot.c White #h(2mm) Epistle Titus 3:4\-7 #h(2mm) Gospel Luke 2:15\-20] ] -#pagebreak(weak: true) + = January #sym.dot.c Week 3 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[10] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[10] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("white") \ #text(weight: "bold")[The Holy Family] \ - #text(size: 7pt)[2nd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Col 3:12\-17 #h(2mm) Gospel Luke 2:42\-52] + #text(size: 6.5pt)[2nd Class #sym.dot.c White #h(2mm) Epistle Col 3:12\-17 #h(2mm) Gospel Luke 2:42\-52] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[11] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[11] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Monday of the 1st Week of the Time after Epiphany] \ - #text(size: 7pt)[4th Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Rom 12:1\-5 #h(2mm) Gospel Luke 2:42\-52] \ - #text(size: 7pt)[Commemoration St. Hyginus Pope and Martyr] + #text(size: 6.5pt)[4th Class #sym.dot.c White #h(2mm) Epistle Rom 12:1\-5 #h(2mm) Gospel Luke 2:42\-52] \ + #text(size: 6.5pt)[Commemoration St. Hyginus Pope and Martyr] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[12] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[12] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Tuesday of the 1st Week of the Time after Epiphany] \ - #text(size: 7pt)[4th Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Rom 12:1\-5 #h(2mm) Gospel Luke 2:42\-52] + #text(size: 6.5pt)[4th Class #sym.dot.c White #h(2mm) Epistle Rom 12:1\-5 #h(2mm) Gospel Luke 2:42\-52] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[13] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[13] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Commemoration of the Baptism of the Lord] \ - #text(size: 7pt)[2nd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Isa 60:1\-6 #h(2mm) Gospel John 1:29\-34] + #text(size: 6.5pt)[2nd Class #sym.dot.c White #h(2mm) Epistle Isa 60:1\-6 #h(2mm) Gospel John 1:29\-34] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[14] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[14] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Hilary] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 2 Tim 4:1\-8 #h(2mm) Gospel Matt 5:13\-19] \ - #text(size: 7pt)[Commemoration S. Felicis] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 2 Tim 4:1\-8 #h(2mm) Gospel Matt 5:13\-19] \ + #text(size: 6.5pt)[Commemoration S. Felicis] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[15] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[15] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Paul, the First Hermit] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Phil 3:7\-12 #h(2mm) Gospel Matt 11:25\-30] \ - #text(size: 7pt)[Commemoration St. Maur, Abbot] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Phil 3:7\-12 #h(2mm) Gospel Matt 11:25\-30] \ + #text(size: 6.5pt)[Commemoration St. Maur, Abbot] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[16] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[16] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("red") \ #text(weight: "bold")[St. Marcellus I] \ - #text(size: 7pt)[3rd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle 1 Pet 5:1\-4; 5:10\-11. #h(2mm) Gospel Matt 16:13\-19] + #text(size: 6.5pt)[3rd Class #sym.dot.c Red #h(2mm) Epistle 1 Pet 5:1\-4; 5:10\-11. #h(2mm) Gospel Matt 16:13\-19] ] -#pagebreak(weak: true) + = January #sym.dot.c Week 4 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[17] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[17] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("green") \ #text(weight: "bold")[2nd Sunday after Epiphany] \ - #text(size: 7pt)[2nd Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Rom 12:6\-16 #h(2mm) Gospel John 2:1\-11] + #text(size: 6.5pt)[2nd Class #sym.dot.c Green #h(2mm) Epistle Rom 12:6\-16 #h(2mm) Gospel John 2:1\-11] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[18] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[18] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Monday of the 2nd Week of the Time after Epiphany] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Rom 12:6\-16 #h(2mm) Gospel John 2:1\-11] \ - #text(size: 7pt)[Commemoration St. Prisca] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle Rom 12:6\-16 #h(2mm) Gospel John 2:1\-11] \ + #text(size: 6.5pt)[Commemoration St. Prisca] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[19] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[19] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Tuesday of the 2nd Week of the Time after Epiphany] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Rom 12:6\-16 #h(2mm) Gospel John 2:1\-11] \ - #text(size: 7pt)[Commemoration St. Canute, Martyr] \ - #text(size: 7pt)[Commemoration Sts. Marius, Martha, Audifax & Abachum] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle Rom 12:6\-16 #h(2mm) Gospel John 2:1\-11] \ + #text(size: 6.5pt)[Commemoration St. Canute, Martyr] \ + #text(size: 6.5pt)[Commemoration Sts. Marius, Martha, Audifax & Abachum] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[20] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[20] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("red") \ #text(weight: "bold")[Sts. Fabian & Sebastian] \ - #text(size: 7pt)[3rd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Heb 11:33\-39 #h(2mm) Gospel Luke 6:17\-23] + #text(size: 6.5pt)[3rd Class #sym.dot.c Red #h(2mm) Epistle Heb 11:33\-39 #h(2mm) Gospel Luke 6:17\-23] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[21] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[21] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("red") \ #text(weight: "bold")[St. Agnes] \ - #text(size: 7pt)[3rd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Sir 51:1\-8; 51:12 #h(2mm) Gospel Matt 25:1\-13.] + #text(size: 6.5pt)[3rd Class #sym.dot.c Red #h(2mm) Epistle Sir 51:1\-8; 51:12 #h(2mm) Gospel Matt 25:1\-13.] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[22] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[22] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("red") \ #text(weight: "bold")[Sts. Vincent & Anastasius] \ - #text(size: 7pt)[3rd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Wis 3:1\-8 #h(2mm) Gospel Luke 21:9\-19] + #text(size: 6.5pt)[3rd Class #sym.dot.c Red #h(2mm) Epistle Wis 3:1\-8 #h(2mm) Gospel Luke 21:9\-19] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[23] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[23] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Raymond of Peñafort] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Sir 31:8\-11 #h(2mm) Gospel Luke 12:35\-40] \ - #text(size: 7pt)[Commemoration St. Emerentiana] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Sir 31:8\-11 #h(2mm) Gospel Luke 12:35\-40] \ + #text(size: 6.5pt)[Commemoration St. Emerentiana] ] -#pagebreak(weak: true) + = January #sym.dot.c Week 5 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[24] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[24] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Septuagesima Sunday] \ - #text(size: 7pt)[2nd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle 1 Cor. 9:24\-27; 10:1\-5 #h(2mm) Gospel Matt 20:1\-16] + #text(size: 6.5pt)[2nd Class #sym.dot.c Violet #h(2mm) Epistle 1 Cor. 9:24\-27; 10:1\-5 #h(2mm) Gospel Matt 20:1\-16] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[25] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[25] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Conversion of St. Paul] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Acts 9:1\-22 #h(2mm) Gospel Matt 19:27\-29.] \ - #text(size: 7pt)[Commemoration St. Peter] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Acts 9:1\-22 #h(2mm) Gospel Matt 19:27\-29.] \ + #text(size: 6.5pt)[Commemoration St. Peter] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[26] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[26] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("red") \ #text(weight: "bold")[St. Polycarp] \ - #text(size: 7pt)[3rd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle 1 John 3:10\-16 #h(2mm) Gospel Matt 10:26\-32.] + #text(size: 6.5pt)[3rd Class #sym.dot.c Red #h(2mm) Epistle 1 John 3:10\-16 #h(2mm) Gospel Matt 10:26\-32.] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[27] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[27] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. John Chrysostom] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 2 Tim 4:1\-8 #h(2mm) Gospel Matt 5:13\-19] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 2 Tim 4:1\-8 #h(2mm) Gospel Matt 5:13\-19] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[28] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[28] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Peter Nolasco] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 1 Cor. 4:9\-14 #h(2mm) Gospel Luke 12:32\-34] \ - #text(size: 7pt)[Commemoration St. Agnes] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 1 Cor. 4:9\-14 #h(2mm) Gospel Luke 12:32\-34] \ + #text(size: 6.5pt)[Commemoration St. Agnes] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[29] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[29] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Francis de Sales] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 2 Tim 4:1\-8 #h(2mm) Gospel Matt 5:13\-19] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 2 Tim 4:1\-8 #h(2mm) Gospel Matt 5:13\-19] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[30] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[30] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("red") \ #text(weight: "bold")[St. Martina] \ - #text(size: 7pt)[3rd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Sir 51:1\-8; 51:12 #h(2mm) Gospel Matt 25:1\-13.] + #text(size: 6.5pt)[3rd Class #sym.dot.c Red #h(2mm) Epistle Sir 51:1\-8; 51:12 #h(2mm) Gospel Matt 25:1\-13.] ] -#pagebreak(weak: true) + = January #sym.dot.c Week 6 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[31] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[31] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Sexagesima Sunday] \ - #text(size: 7pt)[2nd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle 2 Cor. 11:19\-33; 12:1\-9 #h(2mm) Gospel Luke 8:4\-15] + #text(size: 6.5pt)[2nd Class #sym.dot.c Violet #h(2mm) Epistle 2 Cor. 11:19\-33; 12:1\-9 #h(2mm) Gospel Luke 8:4\-15] ] @@ -772,604 +464,301 @@ -#pagebreak(weak: true) + +#block(above: 2mm, below: 0mm, sticky: true)[ + #line(length: 100%, stroke: 0.6pt + luma(120)) + #text(size: 15pt, weight: "bold")[February 2027] +] + = February #sym.dot.c Week 1 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[1] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[1] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("red") \ #text(weight: "bold")[St. Ignatius of Antioch] \ - #text(size: 7pt)[3rd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Rom 8:35\-39 #h(2mm) Gospel John 12:24\-26] + #text(size: 6.5pt)[3rd Class #sym.dot.c Red #h(2mm) Epistle Rom 8:35\-39 #h(2mm) Gospel John 12:24\-26] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[2] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[2] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Purification of the Blessed Virgin Mary] \ - #text(size: 7pt)[2nd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Mal 3:1\-4 #h(2mm) Gospel Luke 2:22\-32] + #text(size: 6.5pt)[2nd Class #sym.dot.c White #h(2mm) Epistle Mal 3:1\-4 #h(2mm) Gospel Luke 2:22\-32] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[3] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[3] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Wednesday of the 2nd Week of Septuagesimatide] \ - #text(size: 7pt)[4th Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle 2 Cor. 11:19\-33; 12:1\-9 #h(2mm) Gospel Luke 8:4\-15] \ - #text(size: 7pt)[Commemoration St. Blaise] + #text(size: 6.5pt)[4th Class #sym.dot.c Violet #h(2mm) Epistle 2 Cor. 11:19\-33; 12:1\-9 #h(2mm) Gospel Luke 8:4\-15] \ + #text(size: 6.5pt)[Commemoration St. Blaise] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[4] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[4] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Andrew Corsini] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Sir 44:16\-27; 45:3\-20 #h(2mm) Gospel Matt 25:14\-23] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Sir 44:16\-27; 45:3\-20 #h(2mm) Gospel Matt 25:14\-23] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[5] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[5] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("red") \ #text(weight: "bold")[St. Agatha] \ - #text(size: 7pt)[3rd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle 1 Cor. 1:26\-31 #h(2mm) Gospel Matt 19:3\-12.] + #text(size: 6.5pt)[3rd Class #sym.dot.c Red #h(2mm) Epistle 1 Cor. 1:26\-31 #h(2mm) Gospel Matt 19:3\-12.] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[6] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[6] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Titus] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Sir 44:16\-27; 45:3\-20 #h(2mm) Gospel Luke 10:1\-9] \ - #text(size: 7pt)[Commemoration St. Dorothy] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Sir 44:16\-27; 45:3\-20 #h(2mm) Gospel Luke 10:1\-9] \ + #text(size: 6.5pt)[Commemoration St. Dorothy] ] -#pagebreak(weak: true) + = February #sym.dot.c Week 2 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[7] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[7] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Quinquagesima Sunday] \ - #text(size: 7pt)[2nd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle 1 Cor. 13:1\-13 #h(2mm) Gospel Luke 18:31\-43] + #text(size: 6.5pt)[2nd Class #sym.dot.c Violet #h(2mm) Epistle 1 Cor. 13:1\-13 #h(2mm) Gospel Luke 18:31\-43] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[8] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[8] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. John of Matha] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Sir 31:8\-11 #h(2mm) Gospel Luke 12:35\-40] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Sir 31:8\-11 #h(2mm) Gospel Luke 12:35\-40] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[9] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[9] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Cyril of Alexandria] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 2 Tim 4:1\-8 #h(2mm) Gospel Matt 5:13\-19] \ - #text(size: 7pt)[Commemoration St. Appollonia] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 2 Tim 4:1\-8 #h(2mm) Gospel Matt 5:13\-19] \ + #text(size: 6.5pt)[Commemoration St. Appollonia] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[10] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[10] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Ash Wednesday] \ - #text(size: 7pt)[1st Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Joel 2:12\-19 #h(2mm) Gospel Matt 6:16\-21] + #text(size: 6.5pt)[1st Class #sym.dot.c Violet #h(2mm) Epistle Joel 2:12\-19 #h(2mm) Gospel Matt 6:16\-21] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[11] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[11] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Thursday after Ash Wednesday] \ - #text(size: 7pt)[3rd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Isa 38:1\-6 #h(2mm) Gospel Matt 8:5\-13] \ - #text(size: 7pt)[Commemoration Our Lady of Lourdes] + #text(size: 6.5pt)[3rd Class #sym.dot.c Violet #h(2mm) Epistle Isa 38:1\-6 #h(2mm) Gospel Matt 8:5\-13] \ + #text(size: 6.5pt)[Commemoration Our Lady of Lourdes] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[12] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[12] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Friday after Ash Wednesday] \ - #text(size: 7pt)[3rd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Isa 58:1\-9 #h(2mm) Gospel Matt 5:43\-48; 6:1\-4] \ - #text(size: 7pt)[Commemoration Seven Holy Servite Founders] + #text(size: 6.5pt)[3rd Class #sym.dot.c Violet #h(2mm) Epistle Isa 58:1\-9 #h(2mm) Gospel Matt 5:43\-48; 6:1\-4] \ + #text(size: 6.5pt)[Commemoration Seven Holy Servite Founders] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[13] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[13] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Saturday after Ash Wednesday] \ - #text(size: 7pt)[3rd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Isa 58:9\-14 #h(2mm) Gospel Mark 6:47\-56] + #text(size: 6.5pt)[3rd Class #sym.dot.c Violet #h(2mm) Epistle Isa 58:9\-14 #h(2mm) Gospel Mark 6:47\-56] ] -#pagebreak(weak: true) + = February #sym.dot.c Week 3 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[14] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[14] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[1st Sunday of Lent] \ - #text(size: 7pt)[1st Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle 2 Cor. 6:1\-10 #h(2mm) Gospel Matt 4:1\-11] + #text(size: 6.5pt)[1st Class #sym.dot.c Violet #h(2mm) Epistle 2 Cor. 6:1\-10 #h(2mm) Gospel Matt 4:1\-11] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[15] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[15] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Monday of the 1st Week of Lent] \ - #text(size: 7pt)[3rd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Ezech 34:11\-16 #h(2mm) Gospel Matt 25:31\-46] \ - #text(size: 7pt)[Commemoration Sts. Faustinus & Jovita] + #text(size: 6.5pt)[3rd Class #sym.dot.c Violet #h(2mm) Epistle Ezech 34:11\-16 #h(2mm) Gospel Matt 25:31\-46] \ + #text(size: 6.5pt)[Commemoration Sts. Faustinus & Jovita] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[16] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[16] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Tuesday of the 1st Week of Lent] \ - #text(size: 7pt)[3rd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Isa 55:6\-11 #h(2mm) Gospel Matt 21:10\-17] + #text(size: 6.5pt)[3rd Class #sym.dot.c Violet #h(2mm) Epistle Isa 55:6\-11 #h(2mm) Gospel Matt 21:10\-17] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[17] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[17] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Lenten Ember Wednesday] \ - #text(size: 7pt)[2nd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle 3 Kgs. 19:3\-8 #h(2mm) Gospel Matt 12:38\-50] + #text(size: 6.5pt)[2nd Class #sym.dot.c Violet #h(2mm) Epistle 3 Kgs. 19:3\-8 #h(2mm) Gospel Matt 12:38\-50] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[18] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[18] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Thursday of the 1st Week of Lent] \ - #text(size: 7pt)[3rd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Ezech 18:1\-9 #h(2mm) Gospel Matt 15:21\-28] \ - #text(size: 7pt)[Commemoration St. Simeon] + #text(size: 6.5pt)[3rd Class #sym.dot.c Violet #h(2mm) Epistle Ezech 18:1\-9 #h(2mm) Gospel Matt 15:21\-28] \ + #text(size: 6.5pt)[Commemoration St. Simeon] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[19] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[19] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Lenten Ember Friday] \ - #text(size: 7pt)[2nd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Ezech 18:20\-28 #h(2mm) Gospel John 5:1\-15] + #text(size: 6.5pt)[2nd Class #sym.dot.c Violet #h(2mm) Epistle Ezech 18:20\-28 #h(2mm) Gospel John 5:1\-15] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[20] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[20] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Lenten Ember Saturday] \ - #text(size: 7pt)[2nd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle 1 Thess. 5:14\-23 #h(2mm) Gospel Matt 17:1\-9] + #text(size: 6.5pt)[2nd Class #sym.dot.c Violet #h(2mm) Epistle 1 Thess. 5:14\-23 #h(2mm) Gospel Matt 17:1\-9] ] -#pagebreak(weak: true) + = February #sym.dot.c Week 4 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[21] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[21] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[2nd Sunday of Lent] \ - #text(size: 7pt)[1st Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle 1 Thess. 4:1\-7 #h(2mm) Gospel Matt 17:1\-9] + #text(size: 6.5pt)[1st Class #sym.dot.c Violet #h(2mm) Epistle 1 Thess. 4:1\-7 #h(2mm) Gospel Matt 17:1\-9] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[22] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[22] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Chair of St. Peter] \ - #text(size: 7pt)[2nd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 1 Pet 1:1\-7 #h(2mm) Gospel Matt 16:13\-19] \ - #text(size: 7pt)[Commemoration Monday of the 2nd Week of Lent] \ - #text(size: 7pt)[Commemoration St. Paul] + #text(size: 6.5pt)[2nd Class #sym.dot.c White #h(2mm) Epistle 1 Pet 1:1\-7 #h(2mm) Gospel Matt 16:13\-19] \ + #text(size: 6.5pt)[Commemoration Monday of the 2nd Week of Lent] \ + #text(size: 6.5pt)[Commemoration St. Paul] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[23] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[23] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Tuesday of the 2nd Week of Lent] \ - #text(size: 7pt)[3rd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle 3 Kings 17:8\-16 #h(2mm) Gospel Matt 23:1\-12] \ - #text(size: 7pt)[Commemoration St. Peter Damien] + #text(size: 6.5pt)[3rd Class #sym.dot.c Violet #h(2mm) Epistle 3 Kings 17:8\-16 #h(2mm) Gospel Matt 23:1\-12] \ + #text(size: 6.5pt)[Commemoration St. Peter Damien] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[24] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[24] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("red") \ #text(weight: "bold")[St. Matthias] \ - #text(size: 7pt)[2nd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Acts 1:15\-26 #h(2mm) Gospel Matt 11:25\-30] \ - #text(size: 7pt)[Commemoration Wednesday of the 2nd Week of Lent] + #text(size: 6.5pt)[2nd Class #sym.dot.c Red #h(2mm) Epistle Acts 1:15\-26 #h(2mm) Gospel Matt 11:25\-30] \ + #text(size: 6.5pt)[Commemoration Wednesday of the 2nd Week of Lent] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[25] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[25] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Thursday of the 2nd Week of Lent] \ - #text(size: 7pt)[3rd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Jer 17:5\-10 #h(2mm) Gospel Luke 16:19\-31] + #text(size: 6.5pt)[3rd Class #sym.dot.c Violet #h(2mm) Epistle Jer 17:5\-10 #h(2mm) Gospel Luke 16:19\-31] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[26] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[26] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Friday of the 2nd Week of Lent] \ - #text(size: 7pt)[3rd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Gen 37:6\-22 #h(2mm) Gospel Matt 21:33\-46] + #text(size: 6.5pt)[3rd Class #sym.dot.c Violet #h(2mm) Epistle Gen 37:6\-22 #h(2mm) Gospel Matt 21:33\-46] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[27] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[27] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Saturday of the 2nd Week of Lent] \ - #text(size: 7pt)[3rd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Gen 27:6\-40 #h(2mm) Gospel Luke 15:11\-32] \ - #text(size: 7pt)[Commemoration St. Gabriel of Our Lady of Sorrows] + #text(size: 6.5pt)[3rd Class #sym.dot.c Violet #h(2mm) Epistle Gen 27:6\-40 #h(2mm) Gospel Luke 15:11\-32] \ + #text(size: 6.5pt)[Commemoration St. Gabriel of Our Lady of Sorrows] ] -#pagebreak(weak: true) + = February #sym.dot.c Week 5 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[28] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[28] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[3rd Sunday of Lent] \ - #text(size: 7pt)[1st Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Eph 5:1\-9 #h(2mm) Gospel Luke 11:14\-28] + #text(size: 6.5pt)[1st Class #sym.dot.c Violet #h(2mm) Epistle Eph 5:1\-9 #h(2mm) Gospel Luke 11:14\-28] ] @@ -1385,662 +774,326 @@ -#pagebreak(weak: true) + +#block(above: 2mm, below: 0mm, sticky: true)[ + #line(length: 100%, stroke: 0.6pt + luma(120)) + #text(size: 15pt, weight: "bold")[March 2027] +] + = March #sym.dot.c Week 1 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[1] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[1] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Monday of the 3rd Week of Lent] \ - #text(size: 7pt)[3rd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle 4 Kings 5:1\-15 #h(2mm) Gospel Luke 4:23\-30] + #text(size: 6.5pt)[3rd Class #sym.dot.c Violet #h(2mm) Epistle 4 Kings 5:1\-15 #h(2mm) Gospel Luke 4:23\-30] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[2] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[2] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Tuesday of the 3rd Week of Lent] \ - #text(size: 7pt)[3rd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle 4 Kings 4:1\-7 #h(2mm) Gospel Matt 18:15\-22] + #text(size: 6.5pt)[3rd Class #sym.dot.c Violet #h(2mm) Epistle 4 Kings 4:1\-7 #h(2mm) Gospel Matt 18:15\-22] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[3] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[3] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Wednesday of the 3rd Week of Lent] \ - #text(size: 7pt)[3rd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Ex 20:12\-24 #h(2mm) Gospel Matt 15:1\-20] + #text(size: 6.5pt)[3rd Class #sym.dot.c Violet #h(2mm) Epistle Ex 20:12\-24 #h(2mm) Gospel Matt 15:1\-20] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[4] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[4] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Thursday of the 3rd Week of Lent] \ - #text(size: 7pt)[3rd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Jer 7:1\-7 #h(2mm) Gospel Luke 4:38\-44.] \ - #text(size: 7pt)[Commemoration St. Casimir] \ - #text(size: 7pt)[Commemoration St. Lucius] + #text(size: 6.5pt)[3rd Class #sym.dot.c Violet #h(2mm) Epistle Jer 7:1\-7 #h(2mm) Gospel Luke 4:38\-44.] \ + #text(size: 6.5pt)[Commemoration St. Casimir] \ + #text(size: 6.5pt)[Commemoration St. Lucius] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[5] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[5] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Friday of the 3rd Week of Lent] \ - #text(size: 7pt)[3rd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Num 20:1, 3; 6\-13. #h(2mm) Gospel John 4:5\-42] + #text(size: 6.5pt)[3rd Class #sym.dot.c Violet #h(2mm) Epistle Num 20:1, 3; 6\-13. #h(2mm) Gospel John 4:5\-42] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[6] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[6] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Saturday of the 3rd Week of Lent] \ - #text(size: 7pt)[3rd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Dan 13:1\-9, 15\-17, 19\-30, 33\-62. #h(2mm) Gospel John 8:1\-11] \ - #text(size: 7pt)[Commemoration Sts. Felicitas & Perpetua] + #text(size: 6.5pt)[3rd Class #sym.dot.c Violet #h(2mm) Epistle Dan 13:1\-9, 15\-17, 19\-30, 33\-62. #h(2mm) Gospel John 8:1\-11] \ + #text(size: 6.5pt)[Commemoration Sts. Felicitas & Perpetua] ] -#pagebreak(weak: true) + = March #sym.dot.c Week 2 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[7] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("rose") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[7] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("rose") \ #text(weight: "bold")[4th Sunday of Lent] \ - #text(size: 7pt)[1st Class #sym.dot.c Rose] \ - #text(size: 7pt)[Epistle Gal 4:22\-31 #h(2mm) Gospel John 6:1\-15] + #text(size: 6.5pt)[1st Class #sym.dot.c Rose #h(2mm) Epistle Gal 4:22\-31 #h(2mm) Gospel John 6:1\-15] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[8] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[8] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Monday of the 4th Week of Lent] \ - #text(size: 7pt)[3rd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle 3 Kings 3:16\-28 #h(2mm) Gospel John 2:13\-25] \ - #text(size: 7pt)[Commemoration St. John of God] + #text(size: 6.5pt)[3rd Class #sym.dot.c Violet #h(2mm) Epistle 3 Kings 3:16\-28 #h(2mm) Gospel John 2:13\-25] \ + #text(size: 6.5pt)[Commemoration St. John of God] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[9] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[9] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Tuesday of the 4th Week of Lent] \ - #text(size: 7pt)[3rd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Ex 32:7\-14 #h(2mm) Gospel John 7:14\-31] \ - #text(size: 7pt)[Commemoration St. Frances Rome] + #text(size: 6.5pt)[3rd Class #sym.dot.c Violet #h(2mm) Epistle Ex 32:7\-14 #h(2mm) Gospel John 7:14\-31] \ + #text(size: 6.5pt)[Commemoration St. Frances Rome] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[10] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[10] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Wednesday of the 4th Week of Lent] \ - #text(size: 7pt)[3rd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Isa. 1:16\-19 #h(2mm) Gospel John 9:1\-38] \ - #text(size: 7pt)[Commemoration Forty Holy Martyrs of Sebaste] + #text(size: 6.5pt)[3rd Class #sym.dot.c Violet #h(2mm) Epistle Isa. 1:16\-19 #h(2mm) Gospel John 9:1\-38] \ + #text(size: 6.5pt)[Commemoration Forty Holy Martyrs of Sebaste] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[11] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[11] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Thursday of the 4th Week of Lent] \ - #text(size: 7pt)[3rd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle 4 Kings 4:25\-38 #h(2mm) Gospel Luke 7:11\-16] + #text(size: 6.5pt)[3rd Class #sym.dot.c Violet #h(2mm) Epistle 4 Kings 4:25\-38 #h(2mm) Gospel Luke 7:11\-16] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[12] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[12] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Friday of the 4th Week of Lent] \ - #text(size: 7pt)[3rd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle 3 Kings 17:17\-24 #h(2mm) Gospel John 11:1\-45] \ - #text(size: 7pt)[Commemoration St. Gregory the Great] + #text(size: 6.5pt)[3rd Class #sym.dot.c Violet #h(2mm) Epistle 3 Kings 17:17\-24 #h(2mm) Gospel John 11:1\-45] \ + #text(size: 6.5pt)[Commemoration St. Gregory the Great] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[13] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[13] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Saturday of the 4th Week of Lent] \ - #text(size: 7pt)[3rd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Isa 49:8\-15 #h(2mm) Gospel John 8:12\-20] + #text(size: 6.5pt)[3rd Class #sym.dot.c Violet #h(2mm) Epistle Isa 49:8\-15 #h(2mm) Gospel John 8:12\-20] ] -#pagebreak(weak: true) + = March #sym.dot.c Week 3 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[14] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[14] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Passion Sunday] \ - #text(size: 7pt)[1st Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Heb 9:11\-15. #h(2mm) Gospel John 8:46\-59.] + #text(size: 6.5pt)[1st Class #sym.dot.c Violet #h(2mm) Epistle Heb 9:11\-15. #h(2mm) Gospel John 8:46\-59.] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[15] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[15] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Monday of the 1st Week of Passion Week] \ - #text(size: 7pt)[3rd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Jonas 3:1\-10 #h(2mm) Gospel John 7:32\-39] + #text(size: 6.5pt)[3rd Class #sym.dot.c Violet #h(2mm) Epistle Jonas 3:1\-10 #h(2mm) Gospel John 7:32\-39] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[16] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[16] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Tuesday of the 1st Week of Passion Week] \ - #text(size: 7pt)[3rd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Dan 14:27, 28\-42 #h(2mm) Gospel John 7:1\-13] + #text(size: 6.5pt)[3rd Class #sym.dot.c Violet #h(2mm) Epistle Dan 14:27, 28\-42 #h(2mm) Gospel John 7:1\-13] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[17] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[17] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Wednesday of the 1st Week of Passion Week] \ - #text(size: 7pt)[3rd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Lev 19:1\-2, 11\-19, 25 #h(2mm) Gospel John 10:22\-38] \ - #text(size: 7pt)[Commemoration St. Patrick] + #text(size: 6.5pt)[3rd Class #sym.dot.c Violet #h(2mm) Epistle Lev 19:1\-2, 11\-19, 25 #h(2mm) Gospel John 10:22\-38] \ + #text(size: 6.5pt)[Commemoration St. Patrick] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[18] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[18] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Thursday of the 1st Week of Passion Week] \ - #text(size: 7pt)[3rd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Dan 3:25, 34\-45. #h(2mm) Gospel Luke 7:36\-50] \ - #text(size: 7pt)[Commemoration St. Cyril of Jerusalem] + #text(size: 6.5pt)[3rd Class #sym.dot.c Violet #h(2mm) Epistle Dan 3:25, 34\-45. #h(2mm) Gospel Luke 7:36\-50] \ + #text(size: 6.5pt)[Commemoration St. Cyril of Jerusalem] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[19] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[19] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Joseph, Spouse of the Bl. Virgin Mary] \ - #text(size: 7pt)[1st Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Ecclus 45:1\-6 #h(2mm) Gospel Matt 1:18\-21] \ - #text(size: 7pt)[Commemoration Friday of the 1st Week of Passion Week] + #text(size: 6.5pt)[1st Class #sym.dot.c White #h(2mm) Epistle Ecclus 45:1\-6 #h(2mm) Gospel Matt 1:18\-21] \ + #text(size: 6.5pt)[Commemoration Friday of the 1st Week of Passion Week] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[20] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[20] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Saturday of the 1st Week of Passion Week] \ - #text(size: 7pt)[3rd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Jer 18:18\-23 #h(2mm) Gospel John 12:10\-36] + #text(size: 6.5pt)[3rd Class #sym.dot.c Violet #h(2mm) Epistle Jer 18:18\-23 #h(2mm) Gospel John 12:10\-36] ] -#pagebreak(weak: true) + = March #sym.dot.c Week 4 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[21] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[21] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Palm Sunday] \ - #text(size: 7pt)[1st Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Phil 2:5\-11 #h(2mm) Gospel Matt. 26:36\-75; 27:1\-60.] + #text(size: 6.5pt)[1st Class #sym.dot.c Violet #h(2mm) Epistle Phil 2:5\-11 #h(2mm) Gospel Matt. 26:36\-75; 27:1\-60.] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[22] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[22] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Monday of Holy Week] \ - #text(size: 7pt)[1st Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Isa 50:5\-10 #h(2mm) Gospel John 12:1\-9] + #text(size: 6.5pt)[1st Class #sym.dot.c Violet #h(2mm) Epistle Isa 50:5\-10 #h(2mm) Gospel John 12:1\-9] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[23] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[23] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Tuesday of Holy Week] \ - #text(size: 7pt)[1st Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Jer 11:18\-20 #h(2mm) Gospel Mark 14:32\-72; 15, 1\-46] + #text(size: 6.5pt)[1st Class #sym.dot.c Violet #h(2mm) Epistle Jer 11:18\-20 #h(2mm) Gospel Mark 14:32\-72; 15, 1\-46] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[24] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[24] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Wednesday of Holy Week (Spy Wednesday)] \ - #text(size: 7pt)[1st Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Isa 53:1\-12 #h(2mm) Gospel Luke 22:39\-71; 23:1\-53] + #text(size: 6.5pt)[1st Class #sym.dot.c Violet #h(2mm) Epistle Isa 53:1\-12 #h(2mm) Gospel Luke 22:39\-71; 23:1\-53] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[25] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[25] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Holy Thursday (Maundy Thursday)] \ - #text(size: 7pt)[1st Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 1 Cor 11:20\-32 #h(2mm) Gospel John 13:1\-15] + #text(size: 6.5pt)[1st Class #sym.dot.c White #h(2mm) Epistle 1 Cor 11:20\-32 #h(2mm) Gospel John 13:1\-15] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[26] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("black") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[26] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("black") \ #text(weight: "bold")[Good Friday] \ - #text(size: 7pt)[1st Class #sym.dot.c Black] \ - #text(size: 7pt)[Epistle Ex 12:1\-11 #h(2mm) Gospel John 18:1\-40; 19:1\-42] + #text(size: 6.5pt)[1st Class #sym.dot.c Black #h(2mm) Epistle Ex 12:1\-11 #h(2mm) Gospel John 18:1\-40; 19:1\-42] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[27] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[27] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Holy Saturday] \ - #text(size: 7pt)[1st Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Col 3:1\-4 #h(2mm) Gospel Matt 28:1\-7] + #text(size: 6.5pt)[1st Class #sym.dot.c Violet #h(2mm) Epistle Col 3:1\-4 #h(2mm) Gospel Matt 28:1\-7] ] -#pagebreak(weak: true) + = March #sym.dot.c Week 5 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[28] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[28] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Easter Sunday] \ - #text(size: 7pt)[1st Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 1 Cor 5:7\-8 #h(2mm) Gospel Mark 16:1\-7] + #text(size: 6.5pt)[1st Class #sym.dot.c White #h(2mm) Epistle 1 Cor 5:7\-8 #h(2mm) Gospel Mark 16:1\-7] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[29] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[29] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Monday of Easter Week] \ - #text(size: 7pt)[1st Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Acts 10:37\-43. #h(2mm) Gospel Luke 24:13\-35] + #text(size: 6.5pt)[1st Class #sym.dot.c White #h(2mm) Epistle Acts 10:37\-43. #h(2mm) Gospel Luke 24:13\-35] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[30] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[30] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Tuesday of Easter Week] \ - #text(size: 7pt)[1st Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Acts 13:16; 13:26\-33 #h(2mm) Gospel Luke 24:36\-47] + #text(size: 6.5pt)[1st Class #sym.dot.c White #h(2mm) Epistle Acts 13:16; 13:26\-33 #h(2mm) Gospel Luke 24:36\-47] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[31] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[31] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Wednesday of Easter Week] \ - #text(size: 7pt)[1st Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Acts 3:13\-15; 3:17\-19 #h(2mm) Gospel John 21:1\-14] + #text(size: 6.5pt)[1st Class #sym.dot.c White #h(2mm) Epistle Acts 3:13\-15; 3:17\-19 #h(2mm) Gospel John 21:1\-14] ] @@ -2050,10 +1103,15 @@ -#pagebreak(weak: true) + +#block(above: 2mm, below: 0mm, sticky: true)[ + #line(length: 100%, stroke: 0.6pt + luma(120)) + #text(size: 15pt, weight: "bold")[April 2027] +] + = April #sym.dot.c Week 1 @@ -2066,635 +1124,310 @@ -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[1] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[1] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Thursday of Easter Week] \ - #text(size: 7pt)[1st Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Acts 8:26\-40 #h(2mm) Gospel John 20:11\-18] + #text(size: 6.5pt)[1st Class #sym.dot.c White #h(2mm) Epistle Acts 8:26\-40 #h(2mm) Gospel John 20:11\-18] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[2] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[2] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Friday of Easter Week] \ - #text(size: 7pt)[1st Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 1 Pet 3:18\-22 #h(2mm) Gospel Matt 28:16\-20] + #text(size: 6.5pt)[1st Class #sym.dot.c White #h(2mm) Epistle 1 Pet 3:18\-22 #h(2mm) Gospel Matt 28:16\-20] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[3] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[3] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Saturday of Easter Week] \ - #text(size: 7pt)[1st Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 1 Pet 2:1\-10 #h(2mm) Gospel John 20:1\-9] + #text(size: 6.5pt)[1st Class #sym.dot.c White #h(2mm) Epistle 1 Pet 2:1\-10 #h(2mm) Gospel John 20:1\-9] ] -#pagebreak(weak: true) + = April #sym.dot.c Week 2 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[4] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[4] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Low Sunday (Sunday in Easter Octave)] \ - #text(size: 7pt)[1st Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 1 John 5:4\-10 #h(2mm) Gospel John 20:19\-31] + #text(size: 6.5pt)[1st Class #sym.dot.c White #h(2mm) Epistle 1 John 5:4\-10 #h(2mm) Gospel John 20:19\-31] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[5] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[5] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Annunciation of the Blessed Virgin Mary] \ - #text(size: 7pt)[1st Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Isa 7:10\-15 #h(2mm) Gospel Luke 1:26\-38] + #text(size: 6.5pt)[1st Class #sym.dot.c White #h(2mm) Epistle Isa 7:10\-15 #h(2mm) Gospel Luke 1:26\-38] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[6] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[6] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Tuesday of the 2nd Week of Eastertide] \ - #text(size: 7pt)[4th Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 1 John 5:4\-10 #h(2mm) Gospel John 20:19\-31] + #text(size: 6.5pt)[4th Class #sym.dot.c White #h(2mm) Epistle 1 John 5:4\-10 #h(2mm) Gospel John 20:19\-31] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[7] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[7] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Wednesday of the 2nd Week of Eastertide] \ - #text(size: 7pt)[4th Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 1 John 5:4\-10 #h(2mm) Gospel John 20:19\-31] + #text(size: 6.5pt)[4th Class #sym.dot.c White #h(2mm) Epistle 1 John 5:4\-10 #h(2mm) Gospel John 20:19\-31] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[8] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[8] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Thursday of the 2nd Week of Eastertide] \ - #text(size: 7pt)[4th Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 1 John 5:4\-10 #h(2mm) Gospel John 20:19\-31] + #text(size: 6.5pt)[4th Class #sym.dot.c White #h(2mm) Epistle 1 John 5:4\-10 #h(2mm) Gospel John 20:19\-31] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[9] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[9] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Friday of the 2nd Week of Eastertide] \ - #text(size: 7pt)[4th Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 1 John 5:4\-10 #h(2mm) Gospel John 20:19\-31] + #text(size: 6.5pt)[4th Class #sym.dot.c White #h(2mm) Epistle 1 John 5:4\-10 #h(2mm) Gospel John 20:19\-31] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[10] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[10] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Our Lady's Saturday Office] \ - #text(size: 7pt)[4th Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Ecclus 24:14\-16 #h(2mm) Gospel John 19:25\-27] + #text(size: 6.5pt)[4th Class #sym.dot.c White #h(2mm) Epistle Ecclus 24:14\-16 #h(2mm) Gospel John 19:25\-27] ] -#pagebreak(weak: true) + = April #sym.dot.c Week 3 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[11] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[11] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("white") \ #text(weight: "bold")[2nd Sunday after Easter] \ - #text(size: 7pt)[2nd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 1 Pet 2:21\-25 #h(2mm) Gospel John 10:11\-16] + #text(size: 6.5pt)[2nd Class #sym.dot.c White #h(2mm) Epistle 1 Pet 2:21\-25 #h(2mm) Gospel John 10:11\-16] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[12] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[12] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Monday of the 3rd Week of Eastertide] \ - #text(size: 7pt)[4th Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 1 Pet 2:21\-25 #h(2mm) Gospel John 10:11\-16] + #text(size: 6.5pt)[4th Class #sym.dot.c White #h(2mm) Epistle 1 Pet 2:21\-25 #h(2mm) Gospel John 10:11\-16] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[13] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[13] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("red") \ #text(weight: "bold")[St. Hermenegild] \ - #text(size: 7pt)[3rd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Wis 10:10\-14 #h(2mm) Gospel Luke 14:26\-33.] + #text(size: 6.5pt)[3rd Class #sym.dot.c Red #h(2mm) Epistle Wis 10:10\-14 #h(2mm) Gospel Luke 14:26\-33.] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[14] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[14] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("red") \ #text(weight: "bold")[St. Justin] \ - #text(size: 7pt)[3rd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle 1 Cor 1:18\-25; 1:30; #h(2mm) Gospel Luke 12:2\-8] \ - #text(size: 7pt)[Commemoration Sts. Tiburtius, Valerian et Maximus, Martyrs] + #text(size: 6.5pt)[3rd Class #sym.dot.c Red #h(2mm) Epistle 1 Cor 1:18\-25; 1:30; #h(2mm) Gospel Luke 12:2\-8] \ + #text(size: 6.5pt)[Commemoration Sts. Tiburtius, Valerian et Maximus, Martyrs] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[15] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[15] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Thursday of the 3rd Week of Eastertide] \ - #text(size: 7pt)[4th Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 1 Pet 2:21\-25 #h(2mm) Gospel John 10:11\-16] + #text(size: 6.5pt)[4th Class #sym.dot.c White #h(2mm) Epistle 1 Pet 2:21\-25 #h(2mm) Gospel John 10:11\-16] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[16] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[16] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Friday of the 3rd Week of Eastertide] \ - #text(size: 7pt)[4th Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 1 Pet 2:21\-25 #h(2mm) Gospel John 10:11\-16] + #text(size: 6.5pt)[4th Class #sym.dot.c White #h(2mm) Epistle 1 Pet 2:21\-25 #h(2mm) Gospel John 10:11\-16] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[17] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[17] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Our Lady's Saturday Office] \ - #text(size: 7pt)[4th Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Ecclus 24:14\-16 #h(2mm) Gospel John 19:25\-27] \ - #text(size: 7pt)[Commemoration St. Anicetus] + #text(size: 6.5pt)[4th Class #sym.dot.c White #h(2mm) Epistle Ecclus 24:14\-16 #h(2mm) Gospel John 19:25\-27] \ + #text(size: 6.5pt)[Commemoration St. Anicetus] ] -#pagebreak(weak: true) + = April #sym.dot.c Week 4 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[18] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[18] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("white") \ #text(weight: "bold")[3rd Sunday after Easter] \ - #text(size: 7pt)[2nd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 1 Pet 2:11\-19 #h(2mm) Gospel John 16:16\-22] + #text(size: 6.5pt)[2nd Class #sym.dot.c White #h(2mm) Epistle 1 Pet 2:11\-19 #h(2mm) Gospel John 16:16\-22] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[19] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[19] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Monday of the 4th Week of Eastertide] \ - #text(size: 7pt)[4th Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 1 Pet 2:11\-19 #h(2mm) Gospel John 16:16\-22] + #text(size: 6.5pt)[4th Class #sym.dot.c White #h(2mm) Epistle 1 Pet 2:11\-19 #h(2mm) Gospel John 16:16\-22] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[20] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[20] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Tuesday of the 4th Week of Eastertide] \ - #text(size: 7pt)[4th Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 1 Pet 2:11\-19 #h(2mm) Gospel John 16:16\-22] + #text(size: 6.5pt)[4th Class #sym.dot.c White #h(2mm) Epistle 1 Pet 2:11\-19 #h(2mm) Gospel John 16:16\-22] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[21] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[21] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Anselm] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 2 Tim 4:1\-8 #h(2mm) Gospel Matt 5:13\-19] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 2 Tim 4:1\-8 #h(2mm) Gospel Matt 5:13\-19] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[22] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[22] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("red") \ #text(weight: "bold")[Sts. Soter & Caius] \ - #text(size: 7pt)[3rd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle 1 Pet 5:1\-4; 5:10\-11. #h(2mm) Gospel Matt 16:13\-19] + #text(size: 6.5pt)[3rd Class #sym.dot.c Red #h(2mm) Epistle 1 Pet 5:1\-4; 5:10\-11. #h(2mm) Gospel Matt 16:13\-19] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[23] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[23] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Friday of the 4th Week of Eastertide] \ - #text(size: 7pt)[4th Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 1 Pet 2:11\-19 #h(2mm) Gospel John 16:16\-22] \ - #text(size: 7pt)[Commemoration St. George] + #text(size: 6.5pt)[4th Class #sym.dot.c White #h(2mm) Epistle 1 Pet 2:11\-19 #h(2mm) Gospel John 16:16\-22] \ + #text(size: 6.5pt)[Commemoration St. George] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[24] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[24] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("red") \ #text(weight: "bold")[St. Fidelis of Sigmaringen] \ - #text(size: 7pt)[3rd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Wis 5:1\-5 #h(2mm) Gospel John 15:1\-7] + #text(size: 6.5pt)[3rd Class #sym.dot.c Red #h(2mm) Epistle Wis 5:1\-5 #h(2mm) Gospel John 15:1\-7] ] -#pagebreak(weak: true) + = April #sym.dot.c Week 5 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[25] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[25] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("white") \ #text(weight: "bold")[4th Sunday after Easter] \ - #text(size: 7pt)[2nd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Jas 1:17\-21 #h(2mm) Gospel John 16:5\-14] \ - #text(size: 7pt)[Commemoration The Major Litanies] + #text(size: 6.5pt)[2nd Class #sym.dot.c White #h(2mm) Epistle Jas 1:17\-21 #h(2mm) Gospel John 16:5\-14] \ + #text(size: 6.5pt)[Commemoration The Major Litanies] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[26] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[26] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("red") \ #text(weight: "bold")[Sts. Cletus & Marcellinus] \ - #text(size: 7pt)[3rd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle 1 Pet 5:1\-4; 5:10\-11. #h(2mm) Gospel Matt 16:13\-19] + #text(size: 6.5pt)[3rd Class #sym.dot.c Red #h(2mm) Epistle 1 Pet 5:1\-4; 5:10\-11. #h(2mm) Gospel Matt 16:13\-19] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[27] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[27] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Peter Canisius] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 2 Tim 4:1\-8 #h(2mm) Gospel Matt 5:13\-19] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 2 Tim 4:1\-8 #h(2mm) Gospel Matt 5:13\-19] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[28] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[28] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Paul of the Cross] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 1 Cor 1:17\-25. #h(2mm) Gospel Luke 10:1\-9] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 1 Cor 1:17\-25. #h(2mm) Gospel Luke 10:1\-9] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[29] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[29] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("red") \ #text(weight: "bold")[St. Peter of Verona] \ - #text(size: 7pt)[3rd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle 2 Tim. 2:8\-10; 3:10\-12. #h(2mm) Gospel Matt 10:34\-42] + #text(size: 6.5pt)[3rd Class #sym.dot.c Red #h(2mm) Epistle 2 Tim. 2:8\-10; 3:10\-12. #h(2mm) Gospel Matt 10:34\-42] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[30] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[30] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Catherine of Siena] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 2 Cor 10:17\-18; 11:1\-2 #h(2mm) Gospel Matt 25:1\-13.] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 2 Cor 10:17\-18; 11:1\-2 #h(2mm) Gospel Matt 25:1\-13.] ] -#pagebreak(weak: true) + +#block(above: 2mm, below: 0mm, sticky: true)[ + #line(length: 100%, stroke: 0.6pt + luma(120)) + #text(size: 15pt, weight: "bold")[May 2027] +] + = May #sym.dot.c Week 1 @@ -2711,654 +1444,313 @@ -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[1] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[1] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Joseph the Workman] \ - #text(size: 7pt)[1st Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Col. 3:14\-15, 17, 23\-24 #h(2mm) Gospel Matt 13:54\-58] + #text(size: 6.5pt)[1st Class #sym.dot.c White #h(2mm) Epistle Col. 3:14\-15, 17, 23\-24 #h(2mm) Gospel Matt 13:54\-58] ] -#pagebreak(weak: true) + = May #sym.dot.c Week 2 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[2] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[2] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("white") \ #text(weight: "bold")[5th Sunday after Easter] \ - #text(size: 7pt)[2nd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Jas 1:22\-27 #h(2mm) Gospel John 16:23\-30] + #text(size: 6.5pt)[2nd Class #sym.dot.c White #h(2mm) Epistle Jas 1:22\-27 #h(2mm) Gospel John 16:23\-30] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[3] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[3] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Rogation Monday] \ - #text(size: 7pt)[4th Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Jas 1:22\-27 #h(2mm) Gospel John 16:23\-30] \ - #text(size: 7pt)[Commemoration Sts. Alexander & Companions] + #text(size: 6.5pt)[4th Class #sym.dot.c Violet #h(2mm) Epistle Jas 1:22\-27 #h(2mm) Gospel John 16:23\-30] \ + #text(size: 6.5pt)[Commemoration Sts. Alexander & Companions] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[4] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[4] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Monica] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 1 Tim. 5:3\-10. #h(2mm) Gospel Luke 7:11\-16] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 1 Tim. 5:3\-10. #h(2mm) Gospel Luke 7:11\-16] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[5] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[5] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Vigil of the Ascension] \ - #text(size: 7pt)[2nd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Eph. 4:7\-13. #h(2mm) Gospel John 17:1\-11.] \ - #text(size: 7pt)[Commemoration St. Pius V] + #text(size: 6.5pt)[2nd Class #sym.dot.c White #h(2mm) Epistle Eph. 4:7\-13. #h(2mm) Gospel John 17:1\-11.] \ + #text(size: 6.5pt)[Commemoration St. Pius V] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[6] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[6] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("white") \ #text(weight: "bold")[The Ascension of Our Lord] \ - #text(size: 7pt)[1st Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Acts 1:1\-11 #h(2mm) Gospel Mark 16:14\-20] + #text(size: 6.5pt)[1st Class #sym.dot.c White #h(2mm) Epistle Acts 1:1\-11 #h(2mm) Gospel Mark 16:14\-20] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[7] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[7] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("red") \ #text(weight: "bold")[St. Stanislaus] \ - #text(size: 7pt)[3rd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Wis 5:1\-5 #h(2mm) Gospel John 15:1\-7] + #text(size: 6.5pt)[3rd Class #sym.dot.c Red #h(2mm) Epistle Wis 5:1\-5 #h(2mm) Gospel John 15:1\-7] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[8] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[8] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Our Lady's Saturday Office] \ - #text(size: 7pt)[4th Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Ecclus 24:14\-16 #h(2mm) Gospel John 19:25\-27] + #text(size: 6.5pt)[4th Class #sym.dot.c White #h(2mm) Epistle Ecclus 24:14\-16 #h(2mm) Gospel John 19:25\-27] ] -#pagebreak(weak: true) + = May #sym.dot.c Week 3 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[9] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[9] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Sunday after the Ascension] \ - #text(size: 7pt)[2nd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 1 Pet 4:7\-11. #h(2mm) Gospel John 15:26\-27; 16:1\-4.] + #text(size: 6.5pt)[2nd Class #sym.dot.c White #h(2mm) Epistle 1 Pet 4:7\-11. #h(2mm) Gospel John 15:26\-27; 16:1\-4.] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[10] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[10] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Antoninus] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Sir 44:16\-27; 45:3\-20 #h(2mm) Gospel Matt 25:14\-23] \ - #text(size: 7pt)[Commemoration St. Gordiano and Epimacho] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Sir 44:16\-27; 45:3\-20 #h(2mm) Gospel Matt 25:14\-23] \ + #text(size: 6.5pt)[Commemoration St. Gordiano and Epimacho] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[11] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[11] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("red") \ #text(weight: "bold")[Sts. Philip & James] \ - #text(size: 7pt)[2nd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Wis. 5:1\-5 #h(2mm) Gospel John 14:1\-13] + #text(size: 6.5pt)[2nd Class #sym.dot.c Red #h(2mm) Epistle Wis. 5:1\-5 #h(2mm) Gospel John 14:1\-13] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[12] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[12] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("red") \ #text(weight: "bold")[Sts. Nereus, Achilleus, Domitilla, & Pancras] \ - #text(size: 7pt)[3rd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Wis. 5:1\-5 #h(2mm) Gospel John 4:46\-53] + #text(size: 6.5pt)[3rd Class #sym.dot.c Red #h(2mm) Epistle Wis. 5:1\-5 #h(2mm) Gospel John 4:46\-53] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[13] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[13] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Robert Bellarmine] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Wis 7:7\-14. #h(2mm) Gospel Matt 5:13\-19] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Wis 7:7\-14. #h(2mm) Gospel Matt 5:13\-19] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[14] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[14] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Friday of the 7th Week of Eastertide] \ - #text(size: 7pt)[4th Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 1 Pet 4:7\-11. #h(2mm) Gospel John 15:26\-27; 16:1\-4.] \ - #text(size: 7pt)[Commemoration St. Boniface] + #text(size: 6.5pt)[4th Class #sym.dot.c White #h(2mm) Epistle 1 Pet 4:7\-11. #h(2mm) Gospel John 15:26\-27; 16:1\-4.] \ + #text(size: 6.5pt)[Commemoration St. Boniface] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[15] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[15] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("red") \ #text(weight: "bold")[Vigil of Pentecost] \ - #text(size: 7pt)[1st Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Acts 19:1\-8. #h(2mm) Gospel John 14:15\-21.] + #text(size: 6.5pt)[1st Class #sym.dot.c Red #h(2mm) Epistle Acts 19:1\-8. #h(2mm) Gospel John 14:15\-21.] ] -#pagebreak(weak: true) + = May #sym.dot.c Week 4 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[16] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[16] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("red") \ #text(weight: "bold")[Pentecost Sunday (Whitsunday)] \ - #text(size: 7pt)[1st Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Acts 2:1\-11. #h(2mm) Gospel John 14:23\-31.] + #text(size: 6.5pt)[1st Class #sym.dot.c Red #h(2mm) Epistle Acts 2:1\-11. #h(2mm) Gospel John 14:23\-31.] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[17] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[17] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("red") \ #text(weight: "bold")[Monday of Pentecost Week] \ - #text(size: 7pt)[1st Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Acts 10:34, 42\-48 #h(2mm) Gospel John 3:16\-21] + #text(size: 6.5pt)[1st Class #sym.dot.c Red #h(2mm) Epistle Acts 10:34, 42\-48 #h(2mm) Gospel John 3:16\-21] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[18] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[18] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("red") \ #text(weight: "bold")[Tuesday of Pentecost Week] \ - #text(size: 7pt)[1st Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Acts 8:14\-17. #h(2mm) Gospel John 10:1\-10.] + #text(size: 6.5pt)[1st Class #sym.dot.c Red #h(2mm) Epistle Acts 8:14\-17. #h(2mm) Gospel John 10:1\-10.] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[19] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[19] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("red") \ #text(weight: "bold")[Pentecost Ember Wednesday] \ - #text(size: 7pt)[1st Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Acts 5:12\-16 #h(2mm) Gospel John 6:44\-52.] + #text(size: 6.5pt)[1st Class #sym.dot.c Red #h(2mm) Epistle Acts 5:12\-16 #h(2mm) Gospel John 6:44\-52.] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[20] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[20] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("red") \ #text(weight: "bold")[Thursday of Pentecost Week] \ - #text(size: 7pt)[1st Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Acts 8:5\-8 #h(2mm) Gospel Luke 9:1\-6] + #text(size: 6.5pt)[1st Class #sym.dot.c Red #h(2mm) Epistle Acts 8:5\-8 #h(2mm) Gospel Luke 9:1\-6] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[21] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[21] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("red") \ #text(weight: "bold")[Pentecost Ember Friday] \ - #text(size: 7pt)[1st Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Joel 2:23\-24; 26\-27 #h(2mm) Gospel Luke 5:17\-26] + #text(size: 6.5pt)[1st Class #sym.dot.c Red #h(2mm) Epistle Joel 2:23\-24; 26\-27 #h(2mm) Gospel Luke 5:17\-26] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[22] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[22] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("red") \ #text(weight: "bold")[Pentecost Ember Saturday] \ - #text(size: 7pt)[1st Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Rom 5:1\-5. #h(2mm) Gospel Luke 4:38\-44.] + #text(size: 6.5pt)[1st Class #sym.dot.c Red #h(2mm) Epistle Rom 5:1\-5. #h(2mm) Gospel Luke 4:38\-44.] ] -#pagebreak(weak: true) + = May #sym.dot.c Week 5 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[23] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[23] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Trinity Sunday] \ - #text(size: 7pt)[1st Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Rom 11:33\-36. #h(2mm) Gospel Matt 28:18\-20] + #text(size: 6.5pt)[1st Class #sym.dot.c White #h(2mm) Epistle Rom 11:33\-36. #h(2mm) Gospel Matt 28:18\-20] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[24] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[24] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Monday of the 1st Week of the Time after Pentecost] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle 1 John 4:8\-21 #h(2mm) Gospel Luke 6:36\-42] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle 1 John 4:8\-21 #h(2mm) Gospel Luke 6:36\-42] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[25] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[25] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Gregory VII] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 1 Pet 5:1\-4; 5:10\-11. #h(2mm) Gospel Matt 16:13\-19] \ - #text(size: 7pt)[Commemoration St. Urban, Pope and Martyr] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 1 Pet 5:1\-4; 5:10\-11. #h(2mm) Gospel Matt 16:13\-19] \ + #text(size: 6.5pt)[Commemoration St. Urban, Pope and Martyr] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[26] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[26] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Philip Neri] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Wis 7:7\-14. #h(2mm) Gospel Luke 12:35\-40] \ - #text(size: 7pt)[Commemoration S. Eleutherius] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Wis 7:7\-14. #h(2mm) Gospel Luke 12:35\-40] \ + #text(size: 6.5pt)[Commemoration S. Eleutherius] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[27] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[27] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Corpus Christi] \ - #text(size: 7pt)[1st Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 1 Cor 11:23\-29 #h(2mm) Gospel John 6:56\-59] + #text(size: 6.5pt)[1st Class #sym.dot.c White #h(2mm) Epistle 1 Cor 11:23\-29 #h(2mm) Gospel John 6:56\-59] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[28] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[28] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Augustine of Canterbury] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 1 Thess 2:2\-9 #h(2mm) Gospel Luke 10:1\-9] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 1 Thess 2:2\-9 #h(2mm) Gospel Luke 10:1\-9] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[29] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[29] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Mary Magdalene de Pazzi] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 2 Cor 10:17\-18; 11:1\-2 #h(2mm) Gospel Matt 25:1\-13.] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 2 Cor 10:17\-18; 11:1\-2 #h(2mm) Gospel Matt 25:1\-13.] ] -#pagebreak(weak: true) + = May #sym.dot.c Week 6 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[30] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[30] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("green") \ #text(weight: "bold")[2nd Sunday after Pentecost] \ - #text(size: 7pt)[2nd Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle 1 John 3:13\-18. #h(2mm) Gospel Luke 14:16\-24.] + #text(size: 6.5pt)[2nd Class #sym.dot.c Green #h(2mm) Epistle 1 John 3:13\-18. #h(2mm) Gospel Luke 14:16\-24.] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[31] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[31] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Queenship of the Blessed Virgin Mary] \ - #text(size: 7pt)[2nd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Eccli 24:5; 14:7; 14:9\-11; 24:30\-31 #h(2mm) Gospel Luke 1:26\-33] \ - #text(size: 7pt)[Commemoration St. Petronilla] + #text(size: 6.5pt)[2nd Class #sym.dot.c White #h(2mm) Epistle Eccli 24:5; 14:7; 14:9\-11; 24:30\-31 #h(2mm) Gospel Luke 1:26\-33] \ + #text(size: 6.5pt)[Commemoration St. Petronilla] ] @@ -3372,10 +1764,15 @@ -#pagebreak(weak: true) + +#block(above: 2mm, below: 0mm, sticky: true)[ + #line(length: 100%, stroke: 0.6pt + luma(120)) + #text(size: 15pt, weight: "bold")[June 2027] +] + = June #sym.dot.c Week 1 @@ -3384,629 +1781,299 @@ -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[1] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[1] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Angela Merici] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 2 Cor 10:17\-18; 11:1\-2 #h(2mm) Gospel Matt 25:1\-13.] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 2 Cor 10:17\-18; 11:1\-2 #h(2mm) Gospel Matt 25:1\-13.] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[2] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[2] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Wednesday of the 2nd Week of the Time after Pentecost] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle 1 John 3:13\-18. #h(2mm) Gospel Luke 14:16\-24.] \ - #text(size: 7pt)[Commemoration Sts. Marcellinus, Peter, & Erasmus] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle 1 John 3:13\-18. #h(2mm) Gospel Luke 14:16\-24.] \ + #text(size: 6.5pt)[Commemoration Sts. Marcellinus, Peter, & Erasmus] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[3] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[3] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Thursday of the 2nd Week of the Time after Pentecost] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle 1 John 3:13\-18. #h(2mm) Gospel Luke 14:16\-24.] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle 1 John 3:13\-18. #h(2mm) Gospel Luke 14:16\-24.] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[4] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[4] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("white") \ #text(weight: "bold")[The Sacred Heart of Jesus] \ - #text(size: 7pt)[1st Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Eph 3:8\-12, 14\-19 #h(2mm) Gospel John 19:31\-37] + #text(size: 6.5pt)[1st Class #sym.dot.c White #h(2mm) Epistle Eph 3:8\-12, 14\-19 #h(2mm) Gospel John 19:31\-37] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[5] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[5] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("red") \ #text(weight: "bold")[St. Boniface] \ - #text(size: 7pt)[3rd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Ecclus 44:1\-15 #h(2mm) Gospel Matt 5:1\-12] + #text(size: 6.5pt)[3rd Class #sym.dot.c Red #h(2mm) Epistle Ecclus 44:1\-15 #h(2mm) Gospel Matt 5:1\-12] ] -#pagebreak(weak: true) + = June #sym.dot.c Week 2 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[6] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[6] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("green") \ #text(weight: "bold")[3rd Sunday after Pentecost] \ - #text(size: 7pt)[2nd Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle 1 Pet. 5:6\-11 #h(2mm) Gospel Luke 15:1\-10] + #text(size: 6.5pt)[2nd Class #sym.dot.c Green #h(2mm) Epistle 1 Pet. 5:6\-11 #h(2mm) Gospel Luke 15:1\-10] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[7] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[7] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Monday of the 3rd Week of the Time after Pentecost] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle 1 Pet. 5:6\-11 #h(2mm) Gospel Luke 15:1\-10] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle 1 Pet. 5:6\-11 #h(2mm) Gospel Luke 15:1\-10] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[8] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[8] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Tuesday of the 3rd Week of the Time after Pentecost] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle 1 Pet. 5:6\-11 #h(2mm) Gospel Luke 15:1\-10] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle 1 Pet. 5:6\-11 #h(2mm) Gospel Luke 15:1\-10] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[9] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[9] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Wednesday of the 3rd Week of the Time after Pentecost] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle 1 Pet. 5:6\-11 #h(2mm) Gospel Luke 15:1\-10] \ - #text(size: 7pt)[Commemoration Sts. Primus & Felicianus] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle 1 Pet. 5:6\-11 #h(2mm) Gospel Luke 15:1\-10] \ + #text(size: 6.5pt)[Commemoration Sts. Primus & Felicianus] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[10] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[10] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Margaret of Scotland] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Prov 31:10\-31 #h(2mm) Gospel Matt 13:44\-52.] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Prov 31:10\-31 #h(2mm) Gospel Matt 13:44\-52.] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[11] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[11] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("red") \ #text(weight: "bold")[St. Barnabas] \ - #text(size: 7pt)[3rd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Acts 11:21\-26; 13:1\-3 #h(2mm) Gospel Matt 10:16\-22] + #text(size: 6.5pt)[3rd Class #sym.dot.c Red #h(2mm) Epistle Acts 11:21\-26; 13:1\-3 #h(2mm) Gospel Matt 10:16\-22] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[12] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[12] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. John of San Fecundo] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Sir 31:8\-11 #h(2mm) Gospel Luke 12:35\-40] \ - #text(size: 7pt)[Commemoration St. Basilidus] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Sir 31:8\-11 #h(2mm) Gospel Luke 12:35\-40] \ + #text(size: 6.5pt)[Commemoration St. Basilidus] ] -#pagebreak(weak: true) + = June #sym.dot.c Week 3 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[13] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[13] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("green") \ #text(weight: "bold")[4th Sunday after Pentecost] \ - #text(size: 7pt)[2nd Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Rom 8:18\-23 #h(2mm) Gospel Luke 5:1\-11] + #text(size: 6.5pt)[2nd Class #sym.dot.c Green #h(2mm) Epistle Rom 8:18\-23 #h(2mm) Gospel Luke 5:1\-11] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[14] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[14] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Basil the Great] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 2 Tim 4:1\-8 #h(2mm) Gospel Luke 14:26\-35] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 2 Tim 4:1\-8 #h(2mm) Gospel Luke 14:26\-35] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[15] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[15] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Tuesday of the 4th Week of the Time after Pentecost] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Rom 8:18\-23 #h(2mm) Gospel Luke 5:1\-11] \ - #text(size: 7pt)[Commemoration St. Vitus] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle Rom 8:18\-23 #h(2mm) Gospel Luke 5:1\-11] \ + #text(size: 6.5pt)[Commemoration St. Vitus] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[16] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[16] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Wednesday of the 4th Week of the Time after Pentecost] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Rom 8:18\-23 #h(2mm) Gospel Luke 5:1\-11] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle Rom 8:18\-23 #h(2mm) Gospel Luke 5:1\-11] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[17] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[17] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Gregory Barbarigo] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Sir 44:16\-27; 45:3\-20 #h(2mm) Gospel Matt 25:14\-23] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Sir 44:16\-27; 45:3\-20 #h(2mm) Gospel Matt 25:14\-23] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[18] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[18] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Ephrem of Syria] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 2 Tim 4:1\-8 #h(2mm) Gospel Matt 5:13\-19] \ - #text(size: 7pt)[Commemoration Ss. Marcus and Marcellianus] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 2 Tim 4:1\-8 #h(2mm) Gospel Matt 5:13\-19] \ + #text(size: 6.5pt)[Commemoration Ss. Marcus and Marcellianus] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[19] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[19] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Julia of Falconieri] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 2 Cor 10:17\-18; 11:1\-2 #h(2mm) Gospel Matt 25:1\-13.] \ - #text(size: 7pt)[Commemoration Sts. Gervasius and Protasius] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 2 Cor 10:17\-18; 11:1\-2 #h(2mm) Gospel Matt 25:1\-13.] \ + #text(size: 6.5pt)[Commemoration Sts. Gervasius and Protasius] ] -#pagebreak(weak: true) + = June #sym.dot.c Week 4 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[20] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[20] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("green") \ #text(weight: "bold")[5th Sunday after Pentecost] \ - #text(size: 7pt)[2nd Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle 1 Pet 3:8\-15. #h(2mm) Gospel Matt 5:20\-24.] + #text(size: 6.5pt)[2nd Class #sym.dot.c Green #h(2mm) Epistle 1 Pet 3:8\-15. #h(2mm) Gospel Matt 5:20\-24.] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[21] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[21] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Aloysius Gongzaga] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Sir 31:8\-11 #h(2mm) Gospel Matt 22:29\-40] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Sir 31:8\-11 #h(2mm) Gospel Matt 22:29\-40] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[22] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[22] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Paulinus of Nola] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 2 Cor. 8:9\-15 #h(2mm) Gospel Luke 12:32\-34] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 2 Cor. 8:9\-15 #h(2mm) Gospel Luke 12:32\-34] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[23] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[23] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Vigil of the Nativity of St. John the Baptist] \ - #text(size: 7pt)[2nd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Jer 1:4\-10 #h(2mm) Gospel Luke 1:5\-17] + #text(size: 6.5pt)[2nd Class #sym.dot.c Violet #h(2mm) Epistle Jer 1:4\-10 #h(2mm) Gospel Luke 1:5\-17] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[24] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[24] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Nativity of St. John the Baptist] \ - #text(size: 7pt)[1st Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Isa 49:1\-3, 5\-7. #h(2mm) Gospel Luke 1:57\-68] + #text(size: 6.5pt)[1st Class #sym.dot.c White #h(2mm) Epistle Isa 49:1\-3, 5\-7. #h(2mm) Gospel Luke 1:57\-68] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[25] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[25] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. William] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Ecclus 45:1\-6 #h(2mm) Gospel Matt 19:27\-29.] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Ecclus 45:1\-6 #h(2mm) Gospel Matt 19:27\-29.] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[26] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[26] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("red") \ #text(weight: "bold")[Sts. John & Paul] \ - #text(size: 7pt)[3rd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Eccli 44:10\-15 #h(2mm) Gospel Luke 12:1\-8] + #text(size: 6.5pt)[3rd Class #sym.dot.c Red #h(2mm) Epistle Eccli 44:10\-15 #h(2mm) Gospel Luke 12:1\-8] ] -#pagebreak(weak: true) + = June #sym.dot.c Week 5 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[27] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[27] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("green") \ #text(weight: "bold")[6th Sunday after Pentecost] \ - #text(size: 7pt)[2nd Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Rom 6:3\-11. #h(2mm) Gospel Mark 8:1\-9] + #text(size: 6.5pt)[2nd Class #sym.dot.c Green #h(2mm) Epistle Rom 6:3\-11. #h(2mm) Gospel Mark 8:1\-9] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[28] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[28] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Vigil of Sts. Peter & Paul] \ - #text(size: 7pt)[2nd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Acts 3:1\-10 #h(2mm) Gospel John 21:15\-19] + #text(size: 6.5pt)[2nd Class #sym.dot.c Violet #h(2mm) Epistle Acts 3:1\-10 #h(2mm) Gospel John 21:15\-19] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[29] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[29] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("red") \ #text(weight: "bold")[Sts. Peter & Paul] \ - #text(size: 7pt)[1st Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Acts 12:1\-11 #h(2mm) Gospel Matt 16:13\-19] + #text(size: 6.5pt)[1st Class #sym.dot.c Red #h(2mm) Epistle Acts 12:1\-11 #h(2mm) Gospel Matt 16:13\-19] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[30] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[30] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("red") \ #text(weight: "bold")[In Commemoratione Sancti Pauli Apostoli] \ - #text(size: 7pt)[3rd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Gal 1:11\-20 #h(2mm) Gospel Matt 10:16\-22] \ - #text(size: 7pt)[Commemoration St. Peter] + #text(size: 6.5pt)[3rd Class #sym.dot.c Red #h(2mm) Epistle Gal 1:11\-20 #h(2mm) Gospel Matt 10:16\-22] \ + #text(size: 6.5pt)[Commemoration St. Peter] ] @@ -4016,10 +2083,15 @@ -#pagebreak(weak: true) + +#block(above: 2mm, below: 0mm, sticky: true)[ + #line(length: 100%, stroke: 0.6pt + luma(120)) + #text(size: 15pt, weight: "bold")[July 2027] +] + = July #sym.dot.c Week 1 @@ -4032,1314 +2104,637 @@ -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[1] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[1] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("red") \ #text(weight: "bold")[The Precious Blood of Our Lord Jesus Christ] \ - #text(size: 7pt)[1st Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Heb 9:11\-15. #h(2mm) Gospel John 19:30\-35] + #text(size: 6.5pt)[1st Class #sym.dot.c Red #h(2mm) Epistle Heb 9:11\-15. #h(2mm) Gospel John 19:30\-35] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[2] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[2] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Visitation of the Blessed Virgin Mary] \ - #text(size: 7pt)[2nd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Song 2:8\-14 #h(2mm) Gospel Luke 1:39\-47] \ - #text(size: 7pt)[Commemoration SS. Processus and Martinian] + #text(size: 6.5pt)[2nd Class #sym.dot.c White #h(2mm) Epistle Song 2:8\-14 #h(2mm) Gospel Luke 1:39\-47] \ + #text(size: 6.5pt)[Commemoration SS. Processus and Martinian] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[3] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[3] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("red") \ #text(weight: "bold")[St. Irenaeus] \ - #text(size: 7pt)[3rd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle 2 Tim. 3:14\-17; 4:1\-5 #h(2mm) Gospel Matt 10:28\-33] + #text(size: 6.5pt)[3rd Class #sym.dot.c Red #h(2mm) Epistle 2 Tim. 3:14\-17; 4:1\-5 #h(2mm) Gospel Matt 10:28\-33] ] -#pagebreak(weak: true) + = July #sym.dot.c Week 2 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[4] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[4] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("green") \ #text(weight: "bold")[7th Sunday after Pentecost] \ - #text(size: 7pt)[2nd Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Rom 6:19\-23 #h(2mm) Gospel Matt 7:15\-21] + #text(size: 6.5pt)[2nd Class #sym.dot.c Green #h(2mm) Epistle Rom 6:19\-23 #h(2mm) Gospel Matt 7:15\-21] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[5] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[5] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Anthony Mary Zaccariah] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 1 Tim. 4:8\-16 #h(2mm) Gospel Mark 10:15\-21] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 1 Tim. 4:8\-16 #h(2mm) Gospel Mark 10:15\-21] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[6] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[6] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Tuesday of the 7th Week of the Time after Pentecost] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Rom 6:19\-23 #h(2mm) Gospel Matt 7:15\-21] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle Rom 6:19\-23 #h(2mm) Gospel Matt 7:15\-21] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[7] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[7] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Sts. Cyril & Methodius] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Heb 7:23\-27 #h(2mm) Gospel Luke 10:1\-9] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Heb 7:23\-27 #h(2mm) Gospel Luke 10:1\-9] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[8] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[8] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Elizabeth of Portugal] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Prov 31:10\-31 #h(2mm) Gospel Matt 13:44\-52.] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Prov 31:10\-31 #h(2mm) Gospel Matt 13:44\-52.] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[9] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[9] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Friday of the 7th Week of the Time after Pentecost] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Rom 6:19\-23 #h(2mm) Gospel Matt 7:15\-21] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle Rom 6:19\-23 #h(2mm) Gospel Matt 7:15\-21] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[10] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[10] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("red") \ #text(weight: "bold")[Seven Holy Brothers and Sts. Rufina & Secunda] \ - #text(size: 7pt)[3rd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Prov 31:10\-31 #h(2mm) Gospel Matt 12:46\-50] + #text(size: 6.5pt)[3rd Class #sym.dot.c Red #h(2mm) Epistle Prov 31:10\-31 #h(2mm) Gospel Matt 12:46\-50] ] -#pagebreak(weak: true) + = July #sym.dot.c Week 3 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[11] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[11] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("green") \ #text(weight: "bold")[8th Sunday after Pentecost] \ - #text(size: 7pt)[2nd Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Rom 8:12\-17 #h(2mm) Gospel Luke 16:1\-9] + #text(size: 6.5pt)[2nd Class #sym.dot.c Green #h(2mm) Epistle Rom 8:12\-17 #h(2mm) Gospel Luke 16:1\-9] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[12] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[12] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. John Gualbert] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Ecclus 45:1\-6 #h(2mm) Gospel Matt 5:43\-48] \ - #text(size: 7pt)[Commemoration Ss. Naboris et Felicis] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Ecclus 45:1\-6 #h(2mm) Gospel Matt 5:43\-48] \ + #text(size: 6.5pt)[Commemoration Ss. Naboris et Felicis] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[13] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[13] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Tuesday of the 8th Week of the Time after Pentecost] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Rom 8:12\-17 #h(2mm) Gospel Luke 16:1\-9] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle Rom 8:12\-17 #h(2mm) Gospel Luke 16:1\-9] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[14] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[14] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Bonaventure] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 2 Tim 4:1\-8 #h(2mm) Gospel Matt 5:13\-19] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 2 Tim 4:1\-8 #h(2mm) Gospel Matt 5:13\-19] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[15] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[15] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Henry the Emperor] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Sir 31:8\-11 #h(2mm) Gospel Luke 12:35\-40] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Sir 31:8\-11 #h(2mm) Gospel Luke 12:35\-40] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[16] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[16] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Friday of the 8th Week of the Time after Pentecost] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Rom 8:12\-17 #h(2mm) Gospel Luke 16:1\-9] \ - #text(size: 7pt)[Commemoration Our Lady of Mt. Carmel] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle Rom 8:12\-17 #h(2mm) Gospel Luke 16:1\-9] \ + #text(size: 6.5pt)[Commemoration Our Lady of Mt. Carmel] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[17] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[17] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Our Lady's Saturday Office] \ - #text(size: 7pt)[4th Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Ecclus 24:14\-16 #h(2mm) Gospel Luke 11:27\-28] \ - #text(size: 7pt)[Commemoration St. Alexis] + #text(size: 6.5pt)[4th Class #sym.dot.c White #h(2mm) Epistle Ecclus 24:14\-16 #h(2mm) Gospel Luke 11:27\-28] \ + #text(size: 6.5pt)[Commemoration St. Alexis] ] -#pagebreak(weak: true) + = July #sym.dot.c Week 4 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[18] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[18] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("green") \ #text(weight: "bold")[9th Sunday after Pentecost] \ - #text(size: 7pt)[2nd Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle 1 Cor. 10:6\-13 #h(2mm) Gospel Luke 19:41\-47] + #text(size: 6.5pt)[2nd Class #sym.dot.c Green #h(2mm) Epistle 1 Cor. 10:6\-13 #h(2mm) Gospel Luke 19:41\-47] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[19] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[19] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Vincent de Paul] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 1 Cor. 4:9\-14 #h(2mm) Gospel Luke 10:1\-9] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 1 Cor. 4:9\-14 #h(2mm) Gospel Luke 10:1\-9] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[20] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[20] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Jerome Emiliani] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Isa 58:7\-11 #h(2mm) Gospel Matt 19:13\-21] \ - #text(size: 7pt)[Commemoration St. Margaret] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Isa 58:7\-11 #h(2mm) Gospel Matt 19:13\-21] \ + #text(size: 6.5pt)[Commemoration St. Margaret] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[21] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[21] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Laurence of Brindisi] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 2 Tim 4:1\-8 #h(2mm) Gospel Matt 5:13\-19] \ - #text(size: 7pt)[Commemoration St. Praxedis Virginis] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 2 Tim 4:1\-8 #h(2mm) Gospel Matt 5:13\-19] \ + #text(size: 6.5pt)[Commemoration St. Praxedis Virginis] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[22] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[22] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Mary Magdalene] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Song 3:2\-5; 8:6\-7 #h(2mm) Gospel Luke 7:36\-50] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Song 3:2\-5; 8:6\-7 #h(2mm) Gospel Luke 7:36\-50] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[23] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[23] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("red") \ #text(weight: "bold")[St. Apollinaris] \ - #text(size: 7pt)[3rd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle 1 Pet. 5:1\-11 #h(2mm) Gospel Luke 22:24\-30] \ - #text(size: 7pt)[Commemoration S. Liborii] + #text(size: 6.5pt)[3rd Class #sym.dot.c Red #h(2mm) Epistle 1 Pet. 5:1\-11 #h(2mm) Gospel Luke 22:24\-30] \ + #text(size: 6.5pt)[Commemoration S. Liborii] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[24] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[24] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Our Lady's Saturday Office] \ - #text(size: 7pt)[4th Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Ecclus 24:14\-16 #h(2mm) Gospel Luke 11:27\-28] \ - #text(size: 7pt)[Commemoration St. Christina] + #text(size: 6.5pt)[4th Class #sym.dot.c White #h(2mm) Epistle Ecclus 24:14\-16 #h(2mm) Gospel Luke 11:27\-28] \ + #text(size: 6.5pt)[Commemoration St. Christina] ] -#pagebreak(weak: true) + = July #sym.dot.c Week 5 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[25] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[25] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("green") \ #text(weight: "bold")[10th Sunday after Pentecost] \ - #text(size: 7pt)[2nd Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle 1 Cor. 12:2\-11 #h(2mm) Gospel Luke 18:9\-14] \ - #text(size: 7pt)[Commemoration St. James the Greater] + #text(size: 6.5pt)[2nd Class #sym.dot.c Green #h(2mm) Epistle 1 Cor. 12:2\-11 #h(2mm) Gospel Luke 18:9\-14] \ + #text(size: 6.5pt)[Commemoration St. James the Greater] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[26] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[26] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Anne, Mother of the Blessed Virgin] \ - #text(size: 7pt)[2nd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Prov 31:10\-31 #h(2mm) Gospel Matt 13:44\-52.] + #text(size: 6.5pt)[2nd Class #sym.dot.c White #h(2mm) Epistle Prov 31:10\-31 #h(2mm) Gospel Matt 13:44\-52.] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[27] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[27] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Tuesday of the 10th Week of the Time after Pentecost] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle 1 Cor. 12:2\-11 #h(2mm) Gospel Luke 18:9\-14] \ - #text(size: 7pt)[Commemoration St. Pantaleon] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle 1 Cor. 12:2\-11 #h(2mm) Gospel Luke 18:9\-14] \ + #text(size: 6.5pt)[Commemoration St. Pantaleon] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[28] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[28] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("red") \ #text(weight: "bold")[Sts. Nazarius & Celsus, St. Victor I & St. Innocent I] \ - #text(size: 7pt)[3rd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Wis 10:17\-20 #h(2mm) Gospel Luke 21:9\-19] + #text(size: 6.5pt)[3rd Class #sym.dot.c Red #h(2mm) Epistle Wis 10:17\-20 #h(2mm) Gospel Luke 21:9\-19] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[29] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[29] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Martha] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 2 Cor 10:17\-18; 11:1\-2 #h(2mm) Gospel Luke 10:38\-42] \ - #text(size: 7pt)[Commemoration Ss. Felicis, Simplicii, Faustini et Beatricis] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 2 Cor 10:17\-18; 11:1\-2 #h(2mm) Gospel Luke 10:38\-42] \ + #text(size: 6.5pt)[Commemoration Ss. Felicis, Simplicii, Faustini et Beatricis] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[30] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[30] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Friday of the 10th Week of the Time after Pentecost] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle 1 Cor. 12:2\-11 #h(2mm) Gospel Luke 18:9\-14] \ - #text(size: 7pt)[Commemoration Sts. Abdon & Sennen] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle 1 Cor. 12:2\-11 #h(2mm) Gospel Luke 18:9\-14] \ + #text(size: 6.5pt)[Commemoration Sts. Abdon & Sennen] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[31] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[31] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Ignatius Loyola] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 2 Tim. 2:8\-10; 3:10\-12. #h(2mm) Gospel Luke 10:1\-9] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 2 Tim. 2:8\-10; 3:10\-12. #h(2mm) Gospel Luke 10:1\-9] ] -#pagebreak(weak: true) + +#block(above: 2mm, below: 0mm, sticky: true)[ + #line(length: 100%, stroke: 0.6pt + luma(120)) + #text(size: 15pt, weight: "bold")[August 2027] +] + = August #sym.dot.c Week 1 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[1] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[1] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("green") \ #text(weight: "bold")[11th Sunday after Pentecost] \ - #text(size: 7pt)[2nd Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle 1 Cor. 15:1\-10 #h(2mm) Gospel Mark 7:31\-37] + #text(size: 6.5pt)[2nd Class #sym.dot.c Green #h(2mm) Epistle 1 Cor. 15:1\-10 #h(2mm) Gospel Mark 7:31\-37] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[2] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[2] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Alphonsus Liguori] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 2 Tim. 2:1\-7 #h(2mm) Gospel Luke 10:1\-9] \ - #text(size: 7pt)[Commemoration St. Stephen I, Pope and Martyr] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 2 Tim. 2:1\-7 #h(2mm) Gospel Luke 10:1\-9] \ + #text(size: 6.5pt)[Commemoration St. Stephen I, Pope and Martyr] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[3] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[3] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Tuesday of the 11th Week of the Time after Pentecost] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle 1 Cor. 15:1\-10 #h(2mm) Gospel Mark 7:31\-37] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle 1 Cor. 15:1\-10 #h(2mm) Gospel Mark 7:31\-37] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[4] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[4] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Dominic] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 2 Tim. 4:1\-8 #h(2mm) Gospel Luke 12:35\-40] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 2 Tim. 4:1\-8 #h(2mm) Gospel Luke 12:35\-40] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[5] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[5] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Dedication of the Basilica of St. Mary Major] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Ecclus 24:14\-16 #h(2mm) Gospel Luke 11:27\-28] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Ecclus 24:14\-16 #h(2mm) Gospel Luke 11:27\-28] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[6] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[6] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Transfiguration of Our Lord] \ - #text(size: 7pt)[2nd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 2 Pet. 1:16\-19 #h(2mm) Gospel Matt 17:1\-9] \ - #text(size: 7pt)[Commemoration Pope Sixtus II, Felicissimus and Agapitus, Martyrs] + #text(size: 6.5pt)[2nd Class #sym.dot.c White #h(2mm) Epistle 2 Pet. 1:16\-19 #h(2mm) Gospel Matt 17:1\-9] \ + #text(size: 6.5pt)[Commemoration Pope Sixtus II, Felicissimus and Agapitus, Martyrs] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[7] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[7] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Cajetan] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Sir 31:8\-11 #h(2mm) Gospel Matt 6:24\-33] \ - #text(size: 7pt)[Commemoration St. Donatus] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Sir 31:8\-11 #h(2mm) Gospel Matt 6:24\-33] \ + #text(size: 6.5pt)[Commemoration St. Donatus] ] -#pagebreak(weak: true) + = August #sym.dot.c Week 2 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[8] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[8] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("green") \ #text(weight: "bold")[12th Sunday after Pentecost] \ - #text(size: 7pt)[2nd Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle 2 Cor. 3:4\-9 #h(2mm) Gospel Luke 10:23\-37] + #text(size: 6.5pt)[2nd Class #sym.dot.c Green #h(2mm) Epistle 2 Cor. 3:4\-9 #h(2mm) Gospel Luke 10:23\-37] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[9] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[9] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Vigil of St. Lawrence] \ - #text(size: 7pt)[3rd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Ecclus 51:1\-8, 12 #h(2mm) Gospel Matt 16:24\-27] \ - #text(size: 7pt)[Commemoration St. Romanus] + #text(size: 6.5pt)[3rd Class #sym.dot.c Violet #h(2mm) Epistle Ecclus 51:1\-8, 12 #h(2mm) Gospel Matt 16:24\-27] \ + #text(size: 6.5pt)[Commemoration St. Romanus] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[10] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[10] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("red") \ #text(weight: "bold")[St. Lawrence] \ - #text(size: 7pt)[2nd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle 2 Cor. 9:6\-10 #h(2mm) Gospel John 12:24\-26] + #text(size: 6.5pt)[2nd Class #sym.dot.c Red #h(2mm) Epistle 2 Cor. 9:6\-10 #h(2mm) Gospel John 12:24\-26] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[11] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[11] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Wednesday of the 12th Week of the Time after Pentecost] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle 2 Cor. 3:4\-9 #h(2mm) Gospel Luke 10:23\-37] \ - #text(size: 7pt)[Commemoration Sts. Tiburtius & Susanna] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle 2 Cor. 3:4\-9 #h(2mm) Gospel Luke 10:23\-37] \ + #text(size: 6.5pt)[Commemoration Sts. Tiburtius & Susanna] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[12] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[12] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Clare] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 2 Cor 10:17\-18; 11:1\-2 #h(2mm) Gospel Matt 25:1\-13.] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 2 Cor 10:17\-18; 11:1\-2 #h(2mm) Gospel Matt 25:1\-13.] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[13] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[13] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Friday of the 12th Week of the Time after Pentecost] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle 2 Cor. 3:4\-9 #h(2mm) Gospel Luke 10:23\-37] \ - #text(size: 7pt)[Commemoration Sts. Hippolytus & Cassian] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle 2 Cor. 3:4\-9 #h(2mm) Gospel Luke 10:23\-37] \ + #text(size: 6.5pt)[Commemoration Sts. Hippolytus & Cassian] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[14] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[14] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Vigil of the Assumption] \ - #text(size: 7pt)[2nd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Sir 24:23\-31 #h(2mm) Gospel Luke 11:27\-28] \ - #text(size: 7pt)[Commemoration St. Eusebius] + #text(size: 6.5pt)[2nd Class #sym.dot.c Violet #h(2mm) Epistle Sir 24:23\-31 #h(2mm) Gospel Luke 11:27\-28] \ + #text(size: 6.5pt)[Commemoration St. Eusebius] ] -#pagebreak(weak: true) + = August #sym.dot.c Week 3 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[15] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[15] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Assumption of the Blessed Virgin Mary] \ - #text(size: 7pt)[1st Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Judith 13:22\-25; 15:10 #h(2mm) Gospel Luke 1:41\-50] \ - #text(size: 7pt)[Commemoration 13th Sunday after Pentecost] + #text(size: 6.5pt)[1st Class #sym.dot.c White #h(2mm) Epistle Judith 13:22\-25; 15:10 #h(2mm) Gospel Luke 1:41\-50] \ + #text(size: 6.5pt)[Commemoration 13th Sunday after Pentecost] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[16] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[16] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Joachim, Father of the Blessed Virgin] \ - #text(size: 7pt)[2nd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Sir 31:8\-11 #h(2mm) Gospel Matt 1:1\-16] + #text(size: 6.5pt)[2nd Class #sym.dot.c White #h(2mm) Epistle Sir 31:8\-11 #h(2mm) Gospel Matt 1:1\-16] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[17] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[17] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Hyacinth] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Sir 31:8\-11 #h(2mm) Gospel Luke 12:35\-40] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Sir 31:8\-11 #h(2mm) Gospel Luke 12:35\-40] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[18] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[18] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Wednesday of the 13th Week of the Time after Pentecost] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Gal 3:16\-22 #h(2mm) Gospel Luke 17:11\-19] \ - #text(size: 7pt)[Commemoration St. Agapitus] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle Gal 3:16\-22 #h(2mm) Gospel Luke 17:11\-19] \ + #text(size: 6.5pt)[Commemoration St. Agapitus] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[19] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[19] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. John Eudes] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Sir 31:8\-11 #h(2mm) Gospel Luke 12:35\-40] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Sir 31:8\-11 #h(2mm) Gospel Luke 12:35\-40] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[20] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[20] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Bernard of Clairvaux] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Ecclus 39:6\-14 #h(2mm) Gospel Matt 5:13\-19] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Ecclus 39:6\-14 #h(2mm) Gospel Matt 5:13\-19] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[21] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[21] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Jane Frances de Chantal] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Prov 31:10\-31 #h(2mm) Gospel Matt 13:44\-52.] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Prov 31:10\-31 #h(2mm) Gospel Matt 13:44\-52.] ] -#pagebreak(weak: true) + = August #sym.dot.c Week 4 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[22] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[22] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("green") \ #text(weight: "bold")[14th Sunday after Pentecost] \ - #text(size: 7pt)[2nd Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Gal 5:16\-24 #h(2mm) Gospel Matt 6:24\-33] \ - #text(size: 7pt)[Commemoration Immaculate Heart of Mary] + #text(size: 6.5pt)[2nd Class #sym.dot.c Green #h(2mm) Epistle Gal 5:16\-24 #h(2mm) Gospel Matt 6:24\-33] \ + #text(size: 6.5pt)[Commemoration Immaculate Heart of Mary] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[23] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[23] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Philip Benizi] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 1 Cor. 4:9\-14 #h(2mm) Gospel Luke 12:32\-34] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 1 Cor. 4:9\-14 #h(2mm) Gospel Luke 12:32\-34] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[24] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[24] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("red") \ #text(weight: "bold")[St. Bartholomew] \ - #text(size: 7pt)[2nd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle 1 Cor. 12:27\-31 #h(2mm) Gospel Luke 6:12\-19] + #text(size: 6.5pt)[2nd Class #sym.dot.c Red #h(2mm) Epistle 1 Cor. 12:27\-31 #h(2mm) Gospel Luke 6:12\-19] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[25] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[25] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Louis IX] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Wis 10:10\-14 #h(2mm) Gospel Luke 19:12\-26] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Wis 10:10\-14 #h(2mm) Gospel Luke 19:12\-26] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[26] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[26] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Thursday of the 14th Week of the Time after Pentecost] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Gal 5:16\-24 #h(2mm) Gospel Matt 6:24\-33] \ - #text(size: 7pt)[Commemoration St. Zephyrinus] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle Gal 5:16\-24 #h(2mm) Gospel Matt 6:24\-33] \ + #text(size: 6.5pt)[Commemoration St. Zephyrinus] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[27] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[27] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Joseph Calasance] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Wis 10:10\-14 #h(2mm) Gospel Matt 18:1\-5] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Wis 10:10\-14 #h(2mm) Gospel Matt 18:1\-5] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[28] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[28] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Augustine] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 2 Tim 4:1\-8 #h(2mm) Gospel Matt 5:13\-19] \ - #text(size: 7pt)[Commemoration St. Hermes] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 2 Tim 4:1\-8 #h(2mm) Gospel Matt 5:13\-19] \ + #text(size: 6.5pt)[Commemoration St. Hermes] ] -#pagebreak(weak: true) + = August #sym.dot.c Week 5 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[29] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[29] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("green") \ #text(weight: "bold")[15th Sunday after Pentecost] \ - #text(size: 7pt)[2nd Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Gal 5:25\-26; 6:1\-10 #h(2mm) Gospel Luke 7:11\-16] + #text(size: 6.5pt)[2nd Class #sym.dot.c Green #h(2mm) Epistle Gal 5:25\-26; 6:1\-10 #h(2mm) Gospel Luke 7:11\-16] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[30] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[30] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Rose of Lima] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 2 Cor 10:17\-18; 11:1\-2 #h(2mm) Gospel Matt 25:1\-13.] \ - #text(size: 7pt)[Commemoration Sts. Felix and Adauctus] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 2 Cor 10:17\-18; 11:1\-2 #h(2mm) Gospel Matt 25:1\-13.] \ + #text(size: 6.5pt)[Commemoration Sts. Felix and Adauctus] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[31] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[31] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Raymond Nonnatus] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Sir 31:8\-11 #h(2mm) Gospel Luke 12:35\-40] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Sir 31:8\-11 #h(2mm) Gospel Luke 12:35\-40] ] @@ -5351,10 +2746,15 @@ -#pagebreak(weak: true) + +#block(above: 2mm, below: 0mm, sticky: true)[ + #line(length: 100%, stroke: 0.6pt + luma(120)) + #text(size: 15pt, weight: "bold")[September 2027] +] + = September #sym.dot.c Week 1 @@ -5365,634 +2765,304 @@ -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[1] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[1] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Wednesday of the 15th Week of the Time after Pentecost] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Gal 5:25\-26; 6:1\-10 #h(2mm) Gospel Luke 7:11\-16] \ - #text(size: 7pt)[Commemoration St. Giles] \ - #text(size: 7pt)[Commemoration Twelve Holy Brothers, Martyrs] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle Gal 5:25\-26; 6:1\-10 #h(2mm) Gospel Luke 7:11\-16] \ + #text(size: 6.5pt)[Commemoration St. Giles] \ + #text(size: 6.5pt)[Commemoration Twelve Holy Brothers, Martyrs] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[2] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[2] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Stephen of Hungary] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Sir 31:8\-11 #h(2mm) Gospel Luke 19:12\-26] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Sir 31:8\-11 #h(2mm) Gospel Luke 19:12\-26] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[3] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[3] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Pius X] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 1 Thess. 2:2\-8 #h(2mm) Gospel John 21:15\-17] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 1 Thess. 2:2\-8 #h(2mm) Gospel John 21:15\-17] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[4] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[4] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Our Lady's Saturday Office] \ - #text(size: 7pt)[4th Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Ecclus 24:14\-16 #h(2mm) Gospel Luke 11:27\-28] + #text(size: 6.5pt)[4th Class #sym.dot.c White #h(2mm) Epistle Ecclus 24:14\-16 #h(2mm) Gospel Luke 11:27\-28] ] -#pagebreak(weak: true) + = September #sym.dot.c Week 2 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[5] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[5] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("green") \ #text(weight: "bold")[16th Sunday after Pentecost] \ - #text(size: 7pt)[2nd Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Eph 3:13\-21 #h(2mm) Gospel Luke 14:1\-11] + #text(size: 6.5pt)[2nd Class #sym.dot.c Green #h(2mm) Epistle Eph 3:13\-21 #h(2mm) Gospel Luke 14:1\-11] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[6] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[6] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Monday of the 16th Week of the Time after Pentecost] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Eph 3:13\-21 #h(2mm) Gospel Luke 14:1\-11] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle Eph 3:13\-21 #h(2mm) Gospel Luke 14:1\-11] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[7] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[7] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Tuesday of the 16th Week of the Time after Pentecost] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Eph 3:13\-21 #h(2mm) Gospel Luke 14:1\-11] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle Eph 3:13\-21 #h(2mm) Gospel Luke 14:1\-11] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[8] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[8] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Nativity of the Blessed Virgin Mary] \ - #text(size: 7pt)[2nd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Prov 8:22\-35 #h(2mm) Gospel Matt 1:1\-16] \ - #text(size: 7pt)[Commemoration S. Hadriani] + #text(size: 6.5pt)[2nd Class #sym.dot.c White #h(2mm) Epistle Prov 8:22\-35 #h(2mm) Gospel Matt 1:1\-16] \ + #text(size: 6.5pt)[Commemoration S. Hadriani] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[9] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[9] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Thursday of the 16th Week of the Time after Pentecost] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Eph 3:13\-21 #h(2mm) Gospel Luke 14:1\-11] \ - #text(size: 7pt)[Commemoration St. Gorgonius] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle Eph 3:13\-21 #h(2mm) Gospel Luke 14:1\-11] \ + #text(size: 6.5pt)[Commemoration St. Gorgonius] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[10] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[10] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Nicholas of Tolentino] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 1 Cor. 4:9\-14 #h(2mm) Gospel Luke 12:32\-34] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 1 Cor. 4:9\-14 #h(2mm) Gospel Luke 12:32\-34] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[11] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[11] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Our Lady's Saturday Office] \ - #text(size: 7pt)[4th Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Ecclus 24:14\-16 #h(2mm) Gospel Luke 11:27\-28] \ - #text(size: 7pt)[Commemoration Sts. Protus & Hyacinth] + #text(size: 6.5pt)[4th Class #sym.dot.c White #h(2mm) Epistle Ecclus 24:14\-16 #h(2mm) Gospel Luke 11:27\-28] \ + #text(size: 6.5pt)[Commemoration Sts. Protus & Hyacinth] ] -#pagebreak(weak: true) + = September #sym.dot.c Week 3 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[12] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[12] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("green") \ #text(weight: "bold")[17th Sunday after Pentecost] \ - #text(size: 7pt)[2nd Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Eph 4:1\-6 #h(2mm) Gospel Matt 22:34\-46] + #text(size: 6.5pt)[2nd Class #sym.dot.c Green #h(2mm) Epistle Eph 4:1\-6 #h(2mm) Gospel Matt 22:34\-46] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[13] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[13] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Monday of the 17th Week of the Time after Pentecost] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Eph 4:1\-6 #h(2mm) Gospel Matt 22:34\-46] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle Eph 4:1\-6 #h(2mm) Gospel Matt 22:34\-46] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[14] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[14] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("red") \ #text(weight: "bold")[Exaltation of the Holy Cross] \ - #text(size: 7pt)[2nd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Phil 2:5\-11 #h(2mm) Gospel John 12:31\-36] + #text(size: 6.5pt)[2nd Class #sym.dot.c Red #h(2mm) Epistle Phil 2:5\-11 #h(2mm) Gospel John 12:31\-36] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[15] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[15] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Seven Sorrows of the Blessed Virgin Mary] \ - #text(size: 7pt)[2nd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Judith 13:22; 13:23\-25 #h(2mm) Gospel John 19:25\-27] \ - #text(size: 7pt)[Commemoration S. Nicomedes] + #text(size: 6.5pt)[2nd Class #sym.dot.c White #h(2mm) Epistle Judith 13:22; 13:23\-25 #h(2mm) Gospel John 19:25\-27] \ + #text(size: 6.5pt)[Commemoration S. Nicomedes] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[16] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[16] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("red") \ #text(weight: "bold")[Sts. Cornelius & Cyprian] \ - #text(size: 7pt)[3rd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Wis 3:1\-8 #h(2mm) Gospel Luke 21:9\-19] \ - #text(size: 7pt)[Commemoration Sts. Euphemia, Lucy and Geminianus] + #text(size: 6.5pt)[3rd Class #sym.dot.c Red #h(2mm) Epistle Wis 3:1\-8 #h(2mm) Gospel Luke 21:9\-19] \ + #text(size: 6.5pt)[Commemoration Sts. Euphemia, Lucy and Geminianus] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[17] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[17] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Friday of the 17th Week of the Time after Pentecost] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Eph 4:1\-6 #h(2mm) Gospel Matt 22:34\-46] \ - #text(size: 7pt)[Commemoration Stigmata of St. Francis] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle Eph 4:1\-6 #h(2mm) Gospel Matt 22:34\-46] \ + #text(size: 6.5pt)[Commemoration Stigmata of St. Francis] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[18] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[18] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Joseph of Cupertino] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 1 Cor 13:1\-8 #h(2mm) Gospel Matt 22:1\-14] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 1 Cor 13:1\-8 #h(2mm) Gospel Matt 22:1\-14] ] -#pagebreak(weak: true) + = September #sym.dot.c Week 4 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[19] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[19] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("green") \ #text(weight: "bold")[18th Sunday after Pentecost] \ - #text(size: 7pt)[2nd Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle 1 Cor. 1:4\-8 #h(2mm) Gospel Matt 9:1\-8] + #text(size: 6.5pt)[2nd Class #sym.dot.c Green #h(2mm) Epistle 1 Cor. 1:4\-8 #h(2mm) Gospel Matt 9:1\-8] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[20] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[20] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Monday of the 18th Week of the Time after Pentecost] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle 1 Cor. 1:4\-8 #h(2mm) Gospel Matt 9:1\-8] \ - #text(size: 7pt)[Commemoration Sts. Eustace & Companions] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle 1 Cor. 1:4\-8 #h(2mm) Gospel Matt 9:1\-8] \ + #text(size: 6.5pt)[Commemoration Sts. Eustace & Companions] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[21] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[21] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("red") \ #text(weight: "bold")[St. Matthew] \ - #text(size: 7pt)[2nd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Ezek 1:10\-14 #h(2mm) Gospel Matt 9:9\-13] + #text(size: 6.5pt)[2nd Class #sym.dot.c Red #h(2mm) Epistle Ezek 1:10\-14 #h(2mm) Gospel Matt 9:9\-13] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[22] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[22] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[September Ember Wednesday] \ - #text(size: 7pt)[2nd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle 2 Esd. 8:1\-10 #h(2mm) Gospel Mark 9:16\-28] \ - #text(size: 7pt)[Commemoration St. Thomas of Villanova] + #text(size: 6.5pt)[2nd Class #sym.dot.c Violet #h(2mm) Epistle 2 Esd. 8:1\-10 #h(2mm) Gospel Mark 9:16\-28] \ + #text(size: 6.5pt)[Commemoration St. Thomas of Villanova] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[23] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[23] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("red") \ #text(weight: "bold")[St. Linus] \ - #text(size: 7pt)[3rd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle 1 Pet 5:1\-4; 5:10\-11. #h(2mm) Gospel Matt 16:13\-19] \ - #text(size: 7pt)[Commemoration St. Thecla] + #text(size: 6.5pt)[3rd Class #sym.dot.c Red #h(2mm) Epistle 1 Pet 5:1\-4; 5:10\-11. #h(2mm) Gospel Matt 16:13\-19] \ + #text(size: 6.5pt)[Commemoration St. Thecla] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[24] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[24] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[September Ember Friday] \ - #text(size: 7pt)[2nd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Osee 14:2\-10 #h(2mm) Gospel Luke 7:36\-50] \ - #text(size: 7pt)[Commemoration Our Lady of Ransom] + #text(size: 6.5pt)[2nd Class #sym.dot.c Violet #h(2mm) Epistle Osee 14:2\-10 #h(2mm) Gospel Luke 7:36\-50] \ + #text(size: 6.5pt)[Commemoration Our Lady of Ransom] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[25] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[25] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[September Ember Saturday] \ - #text(size: 7pt)[2nd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Heb 9:2\-12 #h(2mm) Gospel Luke 13:6\-17] + #text(size: 6.5pt)[2nd Class #sym.dot.c Violet #h(2mm) Epistle Heb 9:2\-12 #h(2mm) Gospel Luke 13:6\-17] ] -#pagebreak(weak: true) + = September #sym.dot.c Week 5 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[26] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[26] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("green") \ #text(weight: "bold")[19th Sunday after Pentecost] \ - #text(size: 7pt)[2nd Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Eph 4:23\-28 #h(2mm) Gospel Matt 22:1\-14] + #text(size: 6.5pt)[2nd Class #sym.dot.c Green #h(2mm) Epistle Eph 4:23\-28 #h(2mm) Gospel Matt 22:1\-14] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[27] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[27] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("red") \ #text(weight: "bold")[Sts. Cosmas & Damian] \ - #text(size: 7pt)[3rd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Wis 5:16\-20 #h(2mm) Gospel Luke 6:17\-23] + #text(size: 6.5pt)[3rd Class #sym.dot.c Red #h(2mm) Epistle Wis 5:16\-20 #h(2mm) Gospel Luke 6:17\-23] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[28] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[28] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("red") \ #text(weight: "bold")[St. Wenceslaus] \ - #text(size: 7pt)[3rd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Wis 10:10\-14 #h(2mm) Gospel Matt 10:34\-42] + #text(size: 6.5pt)[3rd Class #sym.dot.c Red #h(2mm) Epistle Wis 10:10\-14 #h(2mm) Gospel Matt 10:34\-42] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[29] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[29] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Dedication of St. Michael the Archangel] \ - #text(size: 7pt)[1st Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Rev 1:1\-5 #h(2mm) Gospel Matt 18:1\-10] + #text(size: 6.5pt)[1st Class #sym.dot.c White #h(2mm) Epistle Rev 1:1\-5 #h(2mm) Gospel Matt 18:1\-10] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[30] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[30] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Jerome] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 2 Tim 4:1\-8 #h(2mm) Gospel Matt 5:13\-19] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 2 Tim 4:1\-8 #h(2mm) Gospel Matt 5:13\-19] ] @@ -6000,10 +3070,15 @@ -#pagebreak(weak: true) + +#block(above: 2mm, below: 0mm, sticky: true)[ + #line(length: 100%, stroke: 0.6pt + luma(120)) + #text(size: 15pt, weight: "bold")[October 2027] +] + = October #sym.dot.c Week 1 @@ -6018,656 +3093,315 @@ -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[1] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[1] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Friday of the 19th Week of the Time after Pentecost] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Eph 4:23\-28 #h(2mm) Gospel Matt 22:1\-14] \ - #text(size: 7pt)[Commemoration St. Remigius] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle Eph 4:23\-28 #h(2mm) Gospel Matt 22:1\-14] \ + #text(size: 6.5pt)[Commemoration St. Remigius] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[2] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[2] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Holy Guardian Angels] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Exod 23:20\-23 #h(2mm) Gospel Matt 18:1\-10] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Exod 23:20\-23 #h(2mm) Gospel Matt 18:1\-10] ] -#pagebreak(weak: true) + = October #sym.dot.c Week 2 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[3] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[3] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("green") \ #text(weight: "bold")[20th Sunday after Pentecost] \ - #text(size: 7pt)[2nd Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Eph 5:15\-21 #h(2mm) Gospel John 4:46\-53] + #text(size: 6.5pt)[2nd Class #sym.dot.c Green #h(2mm) Epistle Eph 5:15\-21 #h(2mm) Gospel John 4:46\-53] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[4] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[4] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Francis of Assisi] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Gal 6:14\-18 #h(2mm) Gospel Matt 11:25\-30] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Gal 6:14\-18 #h(2mm) Gospel Matt 11:25\-30] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[5] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[5] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Tuesday of the 20th Week of the Time after Pentecost] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Eph 5:15\-21 #h(2mm) Gospel John 4:46\-53] \ - #text(size: 7pt)[Commemoration St. Placid & Companions] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle Eph 5:15\-21 #h(2mm) Gospel John 4:46\-53] \ + #text(size: 6.5pt)[Commemoration St. Placid & Companions] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[6] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[6] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Bruno] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Sir 31:8\-11 #h(2mm) Gospel Luke 12:35\-40] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Sir 31:8\-11 #h(2mm) Gospel Luke 12:35\-40] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[7] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[7] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Our Lady of the Rosary] \ - #text(size: 7pt)[2nd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Prov 8:22\-24, 32\-35. #h(2mm) Gospel Luke 1:26\-38] \ - #text(size: 7pt)[Commemoration St. Mark I] + #text(size: 6.5pt)[2nd Class #sym.dot.c White #h(2mm) Epistle Prov 8:22\-24, 32\-35. #h(2mm) Gospel Luke 1:26\-38] \ + #text(size: 6.5pt)[Commemoration St. Mark I] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[8] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[8] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Bridget of Sweden] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 1 Tim. 5:3\-10. #h(2mm) Gospel Matt 13:44\-52.] \ - #text(size: 7pt)[Commemoration Ss. Sergio, Baccho, Marcello and Apulejo Martyrs] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 1 Tim. 5:3\-10. #h(2mm) Gospel Matt 13:44\-52.] \ + #text(size: 6.5pt)[Commemoration Ss. Sergio, Baccho, Marcello and Apulejo Martyrs] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[9] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[9] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. John Leonardi] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 2 Cor 4:1\-6; 4:15\-18 #h(2mm) Gospel Luke 10:1\-9] \ - #text(size: 7pt)[Commemoration St. Dionysius and companions] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 2 Cor 4:1\-6; 4:15\-18 #h(2mm) Gospel Luke 10:1\-9] \ + #text(size: 6.5pt)[Commemoration St. Dionysius and companions] ] -#pagebreak(weak: true) + = October #sym.dot.c Week 3 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[10] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[10] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("green") \ #text(weight: "bold")[21st Sunday after Pentecost] \ - #text(size: 7pt)[2nd Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Eph 6:10\-17 #h(2mm) Gospel Matt 18:23\-35] + #text(size: 6.5pt)[2nd Class #sym.dot.c Green #h(2mm) Epistle Eph 6:10\-17 #h(2mm) Gospel Matt 18:23\-35] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[11] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[11] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Maternity of the Blessed Virgin Mary] \ - #text(size: 7pt)[2nd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Sir 24:23\-31 #h(2mm) Gospel Luke 2:43\-51] + #text(size: 6.5pt)[2nd Class #sym.dot.c White #h(2mm) Epistle Sir 24:23\-31 #h(2mm) Gospel Luke 2:43\-51] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[12] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[12] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Tuesday of the 21st Week of the Time after Pentecost] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Eph 6:10\-17 #h(2mm) Gospel Matt 18:23\-35] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle Eph 6:10\-17 #h(2mm) Gospel Matt 18:23\-35] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[13] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[13] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Edward] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Sir 31:8\-11 #h(2mm) Gospel Luke 12:35\-40] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Sir 31:8\-11 #h(2mm) Gospel Luke 12:35\-40] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[14] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[14] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("red") \ #text(weight: "bold")[St. Callistus I] \ - #text(size: 7pt)[3rd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle 1 Pet 5:1\-4; 5:10\-11. #h(2mm) Gospel Matt 16:13\-19] + #text(size: 6.5pt)[3rd Class #sym.dot.c Red #h(2mm) Epistle 1 Pet 5:1\-4; 5:10\-11. #h(2mm) Gospel Matt 16:13\-19] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[15] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[15] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Teresa of Avila] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 2 Cor 10:17\-18; 11:1\-2 #h(2mm) Gospel Matt 25:1\-13.] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 2 Cor 10:17\-18; 11:1\-2 #h(2mm) Gospel Matt 25:1\-13.] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[16] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[16] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Hedwig] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Prov 31:10\-31 #h(2mm) Gospel Matt 13:44\-52.] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Prov 31:10\-31 #h(2mm) Gospel Matt 13:44\-52.] ] -#pagebreak(weak: true) + = October #sym.dot.c Week 4 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[17] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[17] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("green") \ #text(weight: "bold")[22nd Sunday after Pentecost] \ - #text(size: 7pt)[2nd Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Phil 1:6\-11 #h(2mm) Gospel Matt 22:15\-21] + #text(size: 6.5pt)[2nd Class #sym.dot.c Green #h(2mm) Epistle Phil 1:6\-11 #h(2mm) Gospel Matt 22:15\-21] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[18] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[18] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("red") \ #text(weight: "bold")[St. Luke the Evangelist] \ - #text(size: 7pt)[2nd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle 2 Cor. 8:16\-24 #h(2mm) Gospel Luke 10:1\-9] + #text(size: 6.5pt)[2nd Class #sym.dot.c Red #h(2mm) Epistle 2 Cor. 8:16\-24 #h(2mm) Gospel Luke 10:1\-9] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[19] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[19] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Peter of Alcantara] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Phil 3:7\-12 #h(2mm) Gospel Luke 12:32\-34] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Phil 3:7\-12 #h(2mm) Gospel Luke 12:32\-34] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[20] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[20] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. John Cantius] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle James 2:12\-17 #h(2mm) Gospel Luke 12:35\-40] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle James 2:12\-17 #h(2mm) Gospel Luke 12:35\-40] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[21] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[21] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Thursday of the 22nd Week of the Time after Pentecost] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Phil 1:6\-11 #h(2mm) Gospel Matt 22:15\-21] \ - #text(size: 7pt)[Commemoration St. Hilarion] \ - #text(size: 7pt)[Commemoration St. Ursula and Companions] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle Phil 1:6\-11 #h(2mm) Gospel Matt 22:15\-21] \ + #text(size: 6.5pt)[Commemoration St. Hilarion] \ + #text(size: 6.5pt)[Commemoration St. Ursula and Companions] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[22] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[22] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Friday of the 22nd Week of the Time after Pentecost] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Phil 1:6\-11 #h(2mm) Gospel Matt 22:15\-21] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle Phil 1:6\-11 #h(2mm) Gospel Matt 22:15\-21] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[23] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[23] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Anthony Mary Claret] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Heb 7:23\-27 #h(2mm) Gospel Matt 24:42\-47] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Heb 7:23\-27 #h(2mm) Gospel Matt 24:42\-47] ] -#pagebreak(weak: true) + = October #sym.dot.c Week 5 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[24] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[24] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("green") \ #text(weight: "bold")[23rd Sunday after Pentecost] \ - #text(size: 7pt)[2nd Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Phil 3:17\-21; 4:1\-3 #h(2mm) Gospel Matt 9:18\-26] + #text(size: 6.5pt)[2nd Class #sym.dot.c Green #h(2mm) Epistle Phil 3:17\-21; 4:1\-3 #h(2mm) Gospel Matt 9:18\-26] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[25] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[25] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Monday of the 23rd Week of the Time after Pentecost] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Phil 3:17\-21; 4:1\-3 #h(2mm) Gospel Matt 9:18\-26] \ - #text(size: 7pt)[Commemoration Sts. Chrysanthus & Daria] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle Phil 3:17\-21; 4:1\-3 #h(2mm) Gospel Matt 9:18\-26] \ + #text(size: 6.5pt)[Commemoration Sts. Chrysanthus & Daria] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[26] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[26] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Tuesday of the 23rd Week of the Time after Pentecost] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Phil 3:17\-21; 4:1\-3 #h(2mm) Gospel Matt 9:18\-26] \ - #text(size: 7pt)[Commemoration St. Evaristus] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle Phil 3:17\-21; 4:1\-3 #h(2mm) Gospel Matt 9:18\-26] \ + #text(size: 6.5pt)[Commemoration St. Evaristus] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[27] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[27] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Wednesday of the 23rd Week of the Time after Pentecost] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Phil 3:17\-21; 4:1\-3 #h(2mm) Gospel Matt 9:18\-26] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle Phil 3:17\-21; 4:1\-3 #h(2mm) Gospel Matt 9:18\-26] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[28] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[28] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("red") \ #text(weight: "bold")[Sts. Simon & Jude] \ - #text(size: 7pt)[2nd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Eph. 4:7\-13. #h(2mm) Gospel John 15:17\-25] + #text(size: 6.5pt)[2nd Class #sym.dot.c Red #h(2mm) Epistle Eph. 4:7\-13. #h(2mm) Gospel John 15:17\-25] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[29] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[29] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Friday of the 23rd Week of the Time after Pentecost] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Phil 3:17\-21; 4:1\-3 #h(2mm) Gospel Matt 9:18\-26] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle Phil 3:17\-21; 4:1\-3 #h(2mm) Gospel Matt 9:18\-26] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[30] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[30] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Our Lady's Saturday Office] \ - #text(size: 7pt)[4th Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Ecclus 24:14\-16 #h(2mm) Gospel Luke 11:27\-28] + #text(size: 6.5pt)[4th Class #sym.dot.c White #h(2mm) Epistle Ecclus 24:14\-16 #h(2mm) Gospel Luke 11:27\-28] ] -#pagebreak(weak: true) + = October #sym.dot.c Week 6 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[31] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[31] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Christ the King] \ - #text(size: 7pt)[1st Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Col 1:12\-20. #h(2mm) Gospel John 18:33\-37] + #text(size: 6.5pt)[1st Class #sym.dot.c White #h(2mm) Epistle Col 1:12\-20. #h(2mm) Gospel John 18:33\-37] ] @@ -6683,643 +3417,318 @@ -#pagebreak(weak: true) + +#block(above: 2mm, below: 0mm, sticky: true)[ + #line(length: 100%, stroke: 0.6pt + luma(120)) + #text(size: 15pt, weight: "bold")[November 2027] +] + = November #sym.dot.c Week 1 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[1] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[1] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("white") \ #text(weight: "bold")[All Saints] \ - #text(size: 7pt)[1st Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Apoc 7:2\-12 #h(2mm) Gospel Matt 5:1\-12] + #text(size: 6.5pt)[1st Class #sym.dot.c White #h(2mm) Epistle Apoc 7:2\-12 #h(2mm) Gospel Matt 5:1\-12] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[2] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("black") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[2] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("black") \ #text(weight: "bold")[Commemoration of All Souls] \ - #text(size: 7pt)[1st Class #sym.dot.c Black] \ - #text(size: 7pt)[Epistle 1 Cor. 15:51\-57 #h(2mm) Gospel John 5:25\-29] + #text(size: 6.5pt)[1st Class #sym.dot.c Black #h(2mm) Epistle 1 Cor. 15:51\-57 #h(2mm) Gospel John 5:25\-29] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[3] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[3] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Wednesday of the 24th Week of the Time after Pentecost] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Col 1:12\-20. #h(2mm) Gospel John 18:33\-37] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle Col 1:12\-20. #h(2mm) Gospel John 18:33\-37] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[4] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[4] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Charles Borromeo] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Sir 44:16\-27; 45:3\-20 #h(2mm) Gospel Matt 25:14\-23] \ - #text(size: 7pt)[Commemoration Sts. Vitalis and Agricola, Martyrs] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Sir 44:16\-27; 45:3\-20 #h(2mm) Gospel Matt 25:14\-23] \ + #text(size: 6.5pt)[Commemoration Sts. Vitalis and Agricola, Martyrs] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[5] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[5] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Friday of the 24th Week of the Time after Pentecost] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Col 1:12\-20. #h(2mm) Gospel John 18:33\-37] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle Col 1:12\-20. #h(2mm) Gospel John 18:33\-37] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[6] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[6] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Our Lady's Saturday Office] \ - #text(size: 7pt)[4th Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Ecclus 24:14\-16 #h(2mm) Gospel Luke 11:27\-28] + #text(size: 6.5pt)[4th Class #sym.dot.c White #h(2mm) Epistle Ecclus 24:14\-16 #h(2mm) Gospel Luke 11:27\-28] ] -#pagebreak(weak: true) + = November #sym.dot.c Week 2 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[7] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[7] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("green") \ #text(weight: "bold")[5th Sunday after Epiphany] \ - #text(size: 7pt)[2nd Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Col 3:12\-17 #h(2mm) Gospel Matt 13:24\-30] + #text(size: 6.5pt)[2nd Class #sym.dot.c Green #h(2mm) Epistle Col 3:12\-17 #h(2mm) Gospel Matt 13:24\-30] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[8] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[8] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("green") \ #text(weight: "bold")[Monday of the 25th Week of the Time after Pentecost] \ - #text(size: 7pt)[4th Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Col 3:12\-17 #h(2mm) Gospel Matt 13:24\-30] \ - #text(size: 7pt)[Commemoration Four Holy Crowned Martyrs] + #text(size: 6.5pt)[4th Class #sym.dot.c Green #h(2mm) Epistle Col 3:12\-17 #h(2mm) Gospel Matt 13:24\-30] \ + #text(size: 6.5pt)[Commemoration Four Holy Crowned Martyrs] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[9] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[9] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Dedication of the Archbasilica of Our Holy Savior] \ - #text(size: 7pt)[2nd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Rev 21:2\-5 #h(2mm) Gospel Luke 19:1\-10] \ - #text(size: 7pt)[Commemoration St. Theodore] + #text(size: 6.5pt)[2nd Class #sym.dot.c White #h(2mm) Epistle Rev 21:2\-5 #h(2mm) Gospel Luke 19:1\-10] \ + #text(size: 6.5pt)[Commemoration St. Theodore] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[10] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[10] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Andrew Avellino] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Sir 31:8\-11 #h(2mm) Gospel Luke 12:35\-40] \ - #text(size: 7pt)[Commemoration Sts. Tryphonis, Respicii, et Nymphae] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Sir 31:8\-11 #h(2mm) Gospel Luke 12:35\-40] \ + #text(size: 6.5pt)[Commemoration Sts. Tryphonis, Respicii, et Nymphae] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[11] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[11] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Martin of Tours] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Sir 44:16\-27; 45:3\-20 #h(2mm) Gospel Luke 11:33\-36] \ - #text(size: 7pt)[Commemoration St. Menna] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Sir 44:16\-27; 45:3\-20 #h(2mm) Gospel Luke 11:33\-36] \ + #text(size: 6.5pt)[Commemoration St. Menna] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[12] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[12] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("red") \ #text(weight: "bold")[St. Martin I] \ - #text(size: 7pt)[3rd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle 1 Pet 5:1\-4; 5:10\-11. #h(2mm) Gospel Matt 16:13\-19] + #text(size: 6.5pt)[3rd Class #sym.dot.c Red #h(2mm) Epistle 1 Pet 5:1\-4; 5:10\-11. #h(2mm) Gospel Matt 16:13\-19] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[13] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[13] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Didacus] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 1 Cor 4:9\-14 #h(2mm) Gospel Luke 12:32\-34] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 1 Cor 4:9\-14 #h(2mm) Gospel Luke 12:32\-34] ] -#pagebreak(weak: true) + = November #sym.dot.c Week 3 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[14] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[14] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("green") \ #text(weight: "bold")[6th Sunday after Epiphany] \ - #text(size: 7pt)[2nd Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle 1 Thess 1:2\-10 #h(2mm) Gospel Matt 13:31\-35] + #text(size: 6.5pt)[2nd Class #sym.dot.c Green #h(2mm) Epistle 1 Thess 1:2\-10 #h(2mm) Gospel Matt 13:31\-35] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[15] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[15] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Albert the Great] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 2 Tim 4:1\-8 #h(2mm) Gospel Matt 5:13\-19] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 2 Tim 4:1\-8 #h(2mm) Gospel Matt 5:13\-19] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[16] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[16] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Gertrude the Great] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 2 Cor 10:17\-18; 11:1\-2 #h(2mm) Gospel Matt 25:1\-13.] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 2 Cor 10:17\-18; 11:1\-2 #h(2mm) Gospel Matt 25:1\-13.] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[17] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[17] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Gregory the Wonderworker] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Sir 44:16\-27; 45:3\-20 #h(2mm) Gospel Mark 11:22\-24] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Sir 44:16\-27; 45:3\-20 #h(2mm) Gospel Mark 11:22\-24] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[18] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[18] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Dedication of the Basilicas of Sts. Peter & Paul] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Rev 21:2\-5 #h(2mm) Gospel Luke 19:1\-10] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Rev 21:2\-5 #h(2mm) Gospel Luke 19:1\-10] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[19] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[19] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Elizabeth of Hungary] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Prov 31:10\-31 #h(2mm) Gospel Matt 13:44\-52.] \ - #text(size: 7pt)[Commemoration St. Pontian] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Prov 31:10\-31 #h(2mm) Gospel Matt 13:44\-52.] \ + #text(size: 6.5pt)[Commemoration St. Pontian] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[20] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[20] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Felix of Valois] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 1 Cor. 4:9\-14 #h(2mm) Gospel Luke 12:32\-34] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 1 Cor. 4:9\-14 #h(2mm) Gospel Luke 12:32\-34] ] -#pagebreak(weak: true) + = November #sym.dot.c Week 4 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[21] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("green") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[21] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("green") \ #text(weight: "bold")[24th and Last Sunday after Pentecost] \ - #text(size: 7pt)[2nd Class #sym.dot.c Green] \ - #text(size: 7pt)[Epistle Col 1:9\-14 #h(2mm) Gospel Matt 24:15\-35] + #text(size: 6.5pt)[2nd Class #sym.dot.c Green #h(2mm) Epistle Col 1:9\-14 #h(2mm) Gospel Matt 24:15\-35] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[22] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[22] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("red") \ #text(weight: "bold")[St. Cecilia] \ - #text(size: 7pt)[3rd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Sir 51:13\-17. #h(2mm) Gospel Matt 25:1\-13.] + #text(size: 6.5pt)[3rd Class #sym.dot.c Red #h(2mm) Epistle Sir 51:13\-17. #h(2mm) Gospel Matt 25:1\-13.] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[23] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[23] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("red") \ #text(weight: "bold")[St. Clement I] \ - #text(size: 7pt)[3rd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Phil 3:17\-21; 4:1\-3 #h(2mm) Gospel Matt 16:13\-19] \ - #text(size: 7pt)[Commemoration St. Felicity] + #text(size: 6.5pt)[3rd Class #sym.dot.c Red #h(2mm) Epistle Phil 3:17\-21; 4:1\-3 #h(2mm) Gospel Matt 16:13\-19] \ + #text(size: 6.5pt)[Commemoration St. Felicity] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[24] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[24] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. John of the Cross] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 2 Tim 4:1\-8 #h(2mm) Gospel Matt 5:13\-19] \ - #text(size: 7pt)[Commemoration St. Chrysogonus] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 2 Tim 4:1\-8 #h(2mm) Gospel Matt 5:13\-19] \ + #text(size: 6.5pt)[Commemoration St. Chrysogonus] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[25] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[25] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("red") \ #text(weight: "bold")[St. Catherine of Alexandria] \ - #text(size: 7pt)[3rd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Sir 51:1\-8; 51:12 #h(2mm) Gospel Matt 25:1\-13.] + #text(size: 6.5pt)[3rd Class #sym.dot.c Red #h(2mm) Epistle Sir 51:1\-8; 51:12 #h(2mm) Gospel Matt 25:1\-13.] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[26] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[26] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Sylvester] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Ecclus 45:1\-6 #h(2mm) Gospel Matt 19:27\-29.] \ - #text(size: 7pt)[Commemoration St. Peter of Alexandria] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Ecclus 45:1\-6 #h(2mm) Gospel Matt 19:27\-29.] \ + #text(size: 6.5pt)[Commemoration St. Peter of Alexandria] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[27] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[27] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Our Lady's Saturday Office] \ - #text(size: 7pt)[4th Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Ecclus 24:14\-16 #h(2mm) Gospel Luke 11:27\-28] + #text(size: 6.5pt)[4th Class #sym.dot.c White #h(2mm) Epistle Ecclus 24:14\-16 #h(2mm) Gospel Luke 11:27\-28] ] -#pagebreak(weak: true) + = November #sym.dot.c Week 5 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[28] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[28] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[1st Sunday of Advent] \ - #text(size: 7pt)[1st Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Rom 13:11\-14 #h(2mm) Gospel Luke 21:25\-33] + #text(size: 6.5pt)[1st Class #sym.dot.c Violet #h(2mm) Epistle Rom 13:11\-14 #h(2mm) Gospel Luke 21:25\-33] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[29] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[29] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Monday of the 1st Week of Advent] \ - #text(size: 7pt)[3rd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Rom 13:11\-14 #h(2mm) Gospel Luke 21:25\-33] \ - #text(size: 7pt)[Commemoration St. Saturninus] + #text(size: 6.5pt)[3rd Class #sym.dot.c Violet #h(2mm) Epistle Rom 13:11\-14 #h(2mm) Gospel Luke 21:25\-33] \ + #text(size: 6.5pt)[Commemoration St. Saturninus] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[30] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[30] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("red") \ #text(weight: "bold")[St. Andrew] \ - #text(size: 7pt)[2nd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Rom 10:10\-18 #h(2mm) Gospel Matt 4:18\-22] \ - #text(size: 7pt)[Commemoration Tuesday of the 1st Week of Advent] + #text(size: 6.5pt)[2nd Class #sym.dot.c Red #h(2mm) Epistle Rom 10:10\-18 #h(2mm) Gospel Matt 4:18\-22] \ + #text(size: 6.5pt)[Commemoration Tuesday of the 1st Week of Advent] ] @@ -7331,10 +3740,15 @@ -#pagebreak(weak: true) + +#block(above: 2mm, below: 0mm, sticky: true)[ + #line(length: 100%, stroke: 0.6pt + luma(120)) + #text(size: 15pt, weight: "bold")[December 2027] +] + = December #sym.dot.c Week 1 @@ -7345,664 +3759,322 @@ -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[1] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[1] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Wednesday of the 1st Week of Advent] \ - #text(size: 7pt)[3rd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Rom 13:11\-14 #h(2mm) Gospel Luke 21:25\-33] + #text(size: 6.5pt)[3rd Class #sym.dot.c Violet #h(2mm) Epistle Rom 13:11\-14 #h(2mm) Gospel Luke 21:25\-33] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[2] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[2] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("red") \ #text(weight: "bold")[St. Vivian] \ - #text(size: 7pt)[3rd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Sir 51:13\-17. #h(2mm) Gospel Matt 13:44\-52.] \ - #text(size: 7pt)[Commemoration Thursday of the 1st Week of Advent] + #text(size: 6.5pt)[3rd Class #sym.dot.c Red #h(2mm) Epistle Sir 51:13\-17. #h(2mm) Gospel Matt 13:44\-52.] \ + #text(size: 6.5pt)[Commemoration Thursday of the 1st Week of Advent] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[3] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[3] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Francis Xavier] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Rom 10:10\-18 #h(2mm) Gospel Mark 16:15\-18] \ - #text(size: 7pt)[Commemoration Friday of the 1st Week of Advent] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Rom 10:10\-18 #h(2mm) Gospel Mark 16:15\-18] \ + #text(size: 6.5pt)[Commemoration Friday of the 1st Week of Advent] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[4] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[4] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Peter Chrysologus] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 2 Tim 4:1\-8 #h(2mm) Gospel Matt 5:13\-19] \ - #text(size: 7pt)[Commemoration Saturday of the 1st Week of Advent] \ - #text(size: 7pt)[Commemoration St. Barbara] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 2 Tim 4:1\-8 #h(2mm) Gospel Matt 5:13\-19] \ + #text(size: 6.5pt)[Commemoration Saturday of the 1st Week of Advent] \ + #text(size: 6.5pt)[Commemoration St. Barbara] ] -#pagebreak(weak: true) + = December #sym.dot.c Week 2 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[5] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[5] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[2nd Sunday of Advent] \ - #text(size: 7pt)[1st Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Rom 15:4\-13 #h(2mm) Gospel Matt 11:2\-10] + #text(size: 6.5pt)[1st Class #sym.dot.c Violet #h(2mm) Epistle Rom 15:4\-13 #h(2mm) Gospel Matt 11:2\-10] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[6] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[6] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Nicholas] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Heb 13:7\-17 #h(2mm) Gospel Matt 25:14\-23] \ - #text(size: 7pt)[Commemoration Monday of the 2nd Week of Advent] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle Heb 13:7\-17 #h(2mm) Gospel Matt 25:14\-23] \ + #text(size: 6.5pt)[Commemoration Monday of the 2nd Week of Advent] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[7] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[7] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Ambrose] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 2 Tim 4:1\-8 #h(2mm) Gospel Matt 5:13\-19] \ - #text(size: 7pt)[Commemoration Tuesday of the 2nd Week of Advent] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 2 Tim 4:1\-8 #h(2mm) Gospel Matt 5:13\-19] \ + #text(size: 6.5pt)[Commemoration Tuesday of the 2nd Week of Advent] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[8] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[8] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Immaculate Conception of the Blessed Virgin Mary] \ - #text(size: 7pt)[1st Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Prov 8:22\-35 #h(2mm) Gospel Luke 1:26\-28] \ - #text(size: 7pt)[Commemoration Wednesday of the 2nd Week of Advent] + #text(size: 6.5pt)[1st Class #sym.dot.c White #h(2mm) Epistle Prov 8:22\-35 #h(2mm) Gospel Luke 1:26\-28] \ + #text(size: 6.5pt)[Commemoration Wednesday of the 2nd Week of Advent] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[9] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[9] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Thursday of the 2nd Week of Advent] \ - #text(size: 7pt)[3rd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Rom 15:4\-13 #h(2mm) Gospel Matt 11:2\-10] + #text(size: 6.5pt)[3rd Class #sym.dot.c Violet #h(2mm) Epistle Rom 15:4\-13 #h(2mm) Gospel Matt 11:2\-10] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[10] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[10] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Friday of the 2nd Week of Advent] \ - #text(size: 7pt)[3rd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Rom 15:4\-13 #h(2mm) Gospel Matt 11:2\-10] \ - #text(size: 7pt)[Commemoration St. Melchiades] + #text(size: 6.5pt)[3rd Class #sym.dot.c Violet #h(2mm) Epistle Rom 15:4\-13 #h(2mm) Gospel Matt 11:2\-10] \ + #text(size: 6.5pt)[Commemoration St. Melchiades] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[11] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[11] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. Damasus I] \ - #text(size: 7pt)[3rd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle 1 Pet 5:1\-4; 5:10\-11. #h(2mm) Gospel Matt 16:13\-19] \ - #text(size: 7pt)[Commemoration Saturday of the 2nd Week of Advent] + #text(size: 6.5pt)[3rd Class #sym.dot.c White #h(2mm) Epistle 1 Pet 5:1\-4; 5:10\-11. #h(2mm) Gospel Matt 16:13\-19] \ + #text(size: 6.5pt)[Commemoration Saturday of the 2nd Week of Advent] ] -#pagebreak(weak: true) + = December #sym.dot.c Week 3 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[12] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("rose") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[12] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("rose") \ #text(weight: "bold")[3rd Sunday of Advent] \ - #text(size: 7pt)[1st Class #sym.dot.c Rose] \ - #text(size: 7pt)[Epistle Phil 4:4\-7 #h(2mm) Gospel John 1:19\-28] + #text(size: 6.5pt)[1st Class #sym.dot.c Rose #h(2mm) Epistle Phil 4:4\-7 #h(2mm) Gospel John 1:19\-28] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[13] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[13] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("red") \ #text(weight: "bold")[St. Lucy] \ - #text(size: 7pt)[3rd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle 2 Cor 10:17\-18; 11:1\-2 #h(2mm) Gospel Matt 13:44\-52.] \ - #text(size: 7pt)[Commemoration Monday of the 3rd Week of Advent] + #text(size: 6.5pt)[3rd Class #sym.dot.c Red #h(2mm) Epistle 2 Cor 10:17\-18; 11:1\-2 #h(2mm) Gospel Matt 13:44\-52.] \ + #text(size: 6.5pt)[Commemoration Monday of the 3rd Week of Advent] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[14] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[14] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Tuesday of the 3rd Week of Advent] \ - #text(size: 7pt)[3rd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Phil 4:4\-7 #h(2mm) Gospel John 1:19\-28] + #text(size: 6.5pt)[3rd Class #sym.dot.c Violet #h(2mm) Epistle Phil 4:4\-7 #h(2mm) Gospel John 1:19\-28] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[15] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[15] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Advent Ember Wednesday] \ - #text(size: 7pt)[2nd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Isa 7:10\-15 #h(2mm) Gospel Luke 1:26\-38] + #text(size: 6.5pt)[2nd Class #sym.dot.c Violet #h(2mm) Epistle Isa 7:10\-15 #h(2mm) Gospel Luke 1:26\-38] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[16] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[16] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("red") \ #text(weight: "bold")[St. Eusebius] \ - #text(size: 7pt)[3rd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle 2 Cor. 1:3\-7 #h(2mm) Gospel Matt 16:24\-27.] \ - #text(size: 7pt)[Commemoration Thursday of the 3rd Week of Advent] + #text(size: 6.5pt)[3rd Class #sym.dot.c Red #h(2mm) Epistle 2 Cor. 1:3\-7 #h(2mm) Gospel Matt 16:24\-27.] \ + #text(size: 6.5pt)[Commemoration Thursday of the 3rd Week of Advent] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[17] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[17] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Advent Ember Friday] \ - #text(size: 7pt)[2nd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Isa 11:1\-5 #h(2mm) Gospel Luke 1:39\-47] + #text(size: 6.5pt)[2nd Class #sym.dot.c Violet #h(2mm) Epistle Isa 11:1\-5 #h(2mm) Gospel Luke 1:39\-47] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[18] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[18] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Advent Ember Saturday] \ - #text(size: 7pt)[2nd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle 2 Thess 2:1\-8 #h(2mm) Gospel Luke 3:1\-6] + #text(size: 6.5pt)[2nd Class #sym.dot.c Violet #h(2mm) Epistle 2 Thess 2:1\-8 #h(2mm) Gospel Luke 3:1\-6] ] -#pagebreak(weak: true) + = December #sym.dot.c Week 4 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[19] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[19] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[4th Sunday of Advent] \ - #text(size: 7pt)[1st Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle 1 Cor. 4:1\-5 #h(2mm) Gospel Luke 3:1\-6] + #text(size: 6.5pt)[1st Class #sym.dot.c Violet #h(2mm) Epistle 1 Cor. 4:1\-5 #h(2mm) Gospel Luke 3:1\-6] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[20] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[20] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Monday of the 4th Week of Advent] \ - #text(size: 7pt)[2nd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle 1 Cor. 4:1\-5 #h(2mm) Gospel Luke 3:1\-6] + #text(size: 6.5pt)[2nd Class #sym.dot.c Violet #h(2mm) Epistle 1 Cor. 4:1\-5 #h(2mm) Gospel Luke 3:1\-6] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[21] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[21] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("red") \ #text(weight: "bold")[St. Thomas] \ - #text(size: 7pt)[2nd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Eph 2:19\-22 #h(2mm) Gospel John 20:24\-29] \ - #text(size: 7pt)[Commemoration Tuesday of the 4th Week of Advent] + #text(size: 6.5pt)[2nd Class #sym.dot.c Red #h(2mm) Epistle Eph 2:19\-22 #h(2mm) Gospel John 20:24\-29] \ + #text(size: 6.5pt)[Commemoration Tuesday of the 4th Week of Advent] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[22] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[22] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Wednesday of the 4th Week of Advent] \ - #text(size: 7pt)[2nd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle 1 Cor. 4:1\-5 #h(2mm) Gospel Luke 3:1\-6] + #text(size: 6.5pt)[2nd Class #sym.dot.c Violet #h(2mm) Epistle 1 Cor. 4:1\-5 #h(2mm) Gospel Luke 3:1\-6] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[23] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[23] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Thursday of the 4th Week of Advent] \ - #text(size: 7pt)[2nd Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle 1 Cor. 4:1\-5 #h(2mm) Gospel Luke 3:1\-6] + #text(size: 6.5pt)[2nd Class #sym.dot.c Violet #h(2mm) Epistle 1 Cor. 4:1\-5 #h(2mm) Gospel Luke 3:1\-6] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[24] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("violet") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[24] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("violet") \ #text(weight: "bold")[Vigil of the Nativity (Christmas Eve)] \ - #text(size: 7pt)[1st Class #sym.dot.c Violet] \ - #text(size: 7pt)[Epistle Rom 1:1\-6 #h(2mm) Gospel Matt 1:18\-21] + #text(size: 6.5pt)[1st Class #sym.dot.c Violet #h(2mm) Epistle Rom 1:1\-6 #h(2mm) Gospel Matt 1:18\-21] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[25] #h(2mm) #text(size: 8pt)[Saturday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[25] #h(2mm) #text(size: 7pt)[Saturday] #h(1fr) #swatch("white") \ #text(weight: "bold")[The Nativity of Our Lord (Christmas)] \ - #text(size: 7pt)[1st Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Heb 1:1\-12 #h(2mm) Gospel John 1:1\-14] + #text(size: 6.5pt)[1st Class #sym.dot.c White #h(2mm) Epistle Heb 1:1\-12 #h(2mm) Gospel John 1:1\-14] ] -#pagebreak(weak: true) + = December #sym.dot.c Week 5 -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[26] #h(2mm) #text(size: 8pt)[Sunday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[26] #h(2mm) #text(size: 7pt)[Sunday] #h(1fr) #swatch("white") \ #text(weight: "bold")[Sunday within the Octave of the Nativity] \ - #text(size: 7pt)[2nd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Gal 4:1\-7 #h(2mm) Gospel Luke 2:33\-40] \ - #text(size: 7pt)[Commemoration St. Stephen] + #text(size: 6.5pt)[2nd Class #sym.dot.c White #h(2mm) Epistle Gal 4:1\-7 #h(2mm) Gospel Luke 2:33\-40] \ + #text(size: 6.5pt)[Commemoration St. Stephen] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[27] #h(2mm) #text(size: 8pt)[Monday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[27] #h(2mm) #text(size: 7pt)[Monday] #h(1fr) #swatch("white") \ #text(weight: "bold")[St. John the Evangelist] \ - #text(size: 7pt)[2nd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Ecclus 15:1\-6 #h(2mm) Gospel John 21:19\-24] \ - #text(size: 7pt)[Commemoration 3rd Day within the Octave of the Nativity] + #text(size: 6.5pt)[2nd Class #sym.dot.c White #h(2mm) Epistle Ecclus 15:1\-6 #h(2mm) Gospel John 21:19\-24] \ + #text(size: 6.5pt)[Commemoration 3rd Day within the Octave of the Nativity] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[28] #h(2mm) #text(size: 8pt)[Tuesday] #h(1fr) #swatch("red") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[28] #h(2mm) #text(size: 7pt)[Tuesday] #h(1fr) #swatch("red") \ #text(weight: "bold")[Holy Innocents] \ - #text(size: 7pt)[2nd Class #sym.dot.c Red] \ - #text(size: 7pt)[Epistle Apoc 14:1\-5 #h(2mm) Gospel Matt 2:13\-18] \ - #text(size: 7pt)[Commemoration 4th Day within the Octave of the Nativity] + #text(size: 6.5pt)[2nd Class #sym.dot.c Red #h(2mm) Epistle Apoc 14:1\-5 #h(2mm) Gospel Matt 2:13\-18] \ + #text(size: 6.5pt)[Commemoration 4th Day within the Octave of the Nativity] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[29] #h(2mm) #text(size: 8pt)[Wednesday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[29] #h(2mm) #text(size: 7pt)[Wednesday] #h(1fr) #swatch("white") \ #text(weight: "bold")[5th Day within the Octave of the Nativity] \ - #text(size: 7pt)[2nd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Titus 3:4\-7 #h(2mm) Gospel Luke 2:15\-20] \ - #text(size: 7pt)[Commemoration St. Thomas Becket] + #text(size: 6.5pt)[2nd Class #sym.dot.c White #h(2mm) Epistle Titus 3:4\-7 #h(2mm) Gospel Luke 2:15\-20] \ + #text(size: 6.5pt)[Commemoration St. Thomas Becket] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[30] #h(2mm) #text(size: 8pt)[Thursday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[30] #h(2mm) #text(size: 7pt)[Thursday] #h(1fr) #swatch("white") \ #text(weight: "bold")[6th Day within the Octave of the Nativity] \ - #text(size: 7pt)[2nd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Titus 3:4\-7 #h(2mm) Gospel Luke 2:15\-20] + #text(size: 6.5pt)[2nd Class #sym.dot.c White #h(2mm) Epistle Titus 3:4\-7 #h(2mm) Gospel Luke 2:15\-20] ] -#block(width: 100%, above: 0.6mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.6mm))[ - // A single Typst paragraph throughout, deliberately: two markup lines - // separated only by a bare newline stay on ONE rendered line (they are - // still the same paragraph, soft-wrapped) -- verified live, the first - // draft of this box merged the rank/colour line into the citation line - // for exactly that reason. A trailing backslash forces a real line - // break WITHOUT starting a new paragraph (no inter-paragraph spacing - // to tune down), which is what a compact multi-line box wants; #par's - // own block-level break, used further up for the day/weekday/swatch - // row against the name below it, is reserved for the one place this - // box actually wants a fresh paragraph. - #set par(leading: 0.42em) - #text(weight: "bold")[31] #h(2mm) #text(size: 8pt)[Friday] #h(1fr) #swatch("white") \ +#block(width: 100%, above: 0.4mm, below: 0mm, breakable: false, stroke: 0.4pt + luma(160), inset: (x: 1.6mm, y: 0.4mm))[ + #set par(leading: 0.36em) + #text(weight: "bold")[31] #h(2mm) #text(size: 7pt)[Friday] #h(1fr) #swatch("white") \ #text(weight: "bold")[7th Day within the Octave of the Nativity] \ - #text(size: 7pt)[2nd Class #sym.dot.c White] \ - #text(size: 7pt)[Epistle Titus 3:4\-7 #h(2mm) Gospel Luke 2:15\-20] \ - #text(size: 7pt)[Commemoration St. Silvester] + #text(size: 6.5pt)[2nd Class #sym.dot.c White #h(2mm) Epistle Titus 3:4\-7 #h(2mm) Gospel Luke 2:15\-20] \ + #text(size: 6.5pt)[Commemoration St. Silvester] ] -#pagebreak(weak: true) diff --git a/test/test_view.ml b/test/test_view.ml index e8de6a0..24e1d85 100644 --- a/test/test_view.ml +++ b/test/test_view.ml @@ -94,6 +94,24 @@ let test_weeks_flatten_to_days () = own real) (as_list (get [ "months" ] v)) +(* Defect 2 (the continuous ordo booklet): [first] is true on exactly one + week per month -- the first -- so a template can print a strong, + standalone month banner at that point instead of every week's own header + looking identical. *) +let test_first_week_flag () = + let v = view_of 2027 in + List.iter + (fun m -> + let weeks = as_list (get [ "weeks" ] m) in + match weeks with + | [] -> Alcotest.fail "a month with no weeks at all" + | first :: rest -> + Alcotest.(check bool) "first week flagged" true (as_bool (get [ "first" ] first)); + List.iter + (fun w -> Alcotest.(check bool) "later week not flagged" false (as_bool (get [ "first" ] w))) + rest) + (as_list (get [ "months" ] v)) + let test_padding_cells_are_flagged () = let v = view_of 2027 in let jan = List.hd (as_list (get [ "months" ] v)) in @@ -207,6 +225,7 @@ let suite = [ Alcotest.test_case "year shape" `Quick test_year_shape; Alcotest.test_case "weeks flatten to days" `Quick test_weeks_flatten_to_days; Alcotest.test_case "padding cells flagged" `Quick test_padding_cells_are_flagged; + Alcotest.test_case "first week flagged" `Quick test_first_week_flag; Alcotest.test_case "padding and real days share key set" `Quick test_padding_and_real_share_key_set; Alcotest.test_case "no day shows a slug" `Quick test_no_day_shows_a_slug; Alcotest.test_case "slug unchanged by naming" `Quick test_slug_is_unchanged_by_naming; |
