Jump to content

Custodes: Difference between revisions

From LilyPond wiki
m New category
Add workaround for cropping issue
Line 4: Line 4:
\layout { ragged-right = ##t }
\layout { ragged-right = ##t }


\new Staff \with { \consists "Custos_engraver" } \relative c' {
\markup \with-true-dimensions \score { % work around a cropping issue
  \override Staff.Custos.neutral-position = #4
  \new Staff \with { \consists "Custos_engraver" } \relative c' {
 
    \override Staff.Custos.neutral-position = #4
  \override Staff.Custos.style = #'hufnagel
 
  c1^"hufnagel" \break
    \override Staff.Custos.style = #'hufnagel
  <d a' f'>1
    c1^"hufnagel" \break
 
    <d a' f'>1
  \override Staff.Custos.style = #'medicaea
 
  c1^"medicaea" \break
    \override Staff.Custos.style = #'medicaea
  <d a' f'>1
    c1^"medicaea" \break
 
    <d a' f'>1
  \override Staff.Custos.style = #'vaticana
 
  c1^"vaticana" \break
    \override Staff.Custos.style = #'vaticana
  <d a' f'>1
    c1^"vaticana" \break
 
    <d a' f'>1
  \override Staff.Custos.style = #'mensural
 
  c1^"mensural" \break
    \override Staff.Custos.style = #'mensural
  <d a' f'>1
    c1^"mensural" \break
    <d a' f'>1
  }
}
}
</lilypond>
</lilypond>



Revision as of 12:41, 25 November 2025

Custodes may be engraved in various styles.

\version "2.24"

\layout { ragged-right = ##t }

\markup \with-true-dimensions \score { % work around a cropping issue
  \new Staff \with { \consists "Custos_engraver" } \relative c' {
    \override Staff.Custos.neutral-position = #4

    \override Staff.Custos.style = #'hufnagel
    c1^"hufnagel" \break
    <d a' f'>1

    \override Staff.Custos.style = #'medicaea
    c1^"medicaea" \break
    <d a' f'>1

    \override Staff.Custos.style = #'vaticana
    c1^"vaticana" \break
    <d a' f'>1

    \override Staff.Custos.style = #'mensural
    c1^"mensural" \break
    <d a' f'>1
  }
}