Jump to content

Custodes: Difference between revisions

From LilyPond wiki
Import snippet from LSR
 
m Replace version="2.24.0" with version="2.24" now that the LilyWiki extension supports auto-selecting the latest release in a stable series
Line 1: Line 1:
Custodes may be engraved in various styles.
Custodes may be engraved in various styles.


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



Revision as of 18:45, 16 November 2025

Custodes may be engraved in various styles.

\version "2.24"

\layout { ragged-right = ##t }

\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
}