]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/custodes.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / Documentation / snippets / custodes.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.di.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.18.0"
8
9 \header {
10   lsrtags = "ancient-notation, specific-notation, symbols-and-glyphs, tweaks-and-overrides"
11
12   texidoc = "
13 Custodes may be engraved in various styles.
14
15 "
16   doctitle = "Custodes"
17 } % begin verbatim
18
19 \layout { ragged-right = ##t }
20
21 \new Staff \with { \consists "Custos_engraver" } \relative c' {
22   \override Staff.Custos.neutral-position = #4
23
24   \override Staff.Custos.style = #'hufnagel
25   c1^"hufnagel" \break
26   <d a' f'>1
27
28   \override Staff.Custos.style = #'medicaea
29   c1^"medicaea" \break
30   <d a' f'>1
31
32   \override Staff.Custos.style = #'vaticana
33   c1^"vaticana" \break
34   <d a' f'>1
35
36   \override Staff.Custos.style = #'mensural
37   c1^"mensural" \break
38   <d a' f'>1
39 }