Jump to content

Custodes: Difference between revisions

From LilyPond wiki
Add workaround for cropping issue
mNo edit summary
 
(2 intermediate revisions by 2 users not shown)
Line 2: Line 2:


<lilypond version="2.24">
<lilypond version="2.24">
\layout { ragged-right = ##t }
\layout {
  ragged-right = ##t
}


\markup \with-true-dimensions \score { % work around a cropping issue
\markup \with-true-dimensions % work around a cropping issue
   \new Staff \with { \consists "Custos_engraver" } \relative c' {
   \score {
    \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
      \override Staff.Custos.style = #'hufnagel
    c1^"hufnagel" \break
      c1^"hufnagel" \break
    <d a' f'>1
      <d a' f'>1


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


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


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


[[Category:Ancient notation]]
[[Category:Ancient notation]]
[[Category:Ancient notation]]
[[Category:Specific notation]]
[[Category:Symbols and glyphs]]
[[Category:Symbols and glyphs]]
[[Category:Tweaks and overrides]]
[[Category:Tweaks and overrides]]
[[Category:Specific notation]]
[[Category:Included in the official documentation]]
[[Category:Included in the official documentation]]
[[Category:Snippet]]
[[Category:Snippet]]

Latest revision as of 15:27, 16 December 2025

Custodes may be engraved in various styles.

\version "2.24"

\layout {
  ragged-right = ##t
}

\markup \with-true-dimensions  % work around a cropping issue
  \score {
    \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
    }
  }