]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/new/numbers-as-easy-note-heads.ly
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / Documentation / snippets / new / numbers-as-easy-note-heads.ly
1 \version "2.13.11"
2
3 \header {
4   lsrtags = "pitches"
5   texidoc = "
6 Easy notation note heads use the @code{note-names} property
7 of the @code{NoteHead} object to determine what appears inside
8 the note head.  By overriding this property, it is possible
9 to print numbers representing the scale-degree.
10
11 A simple engraver can be created to do this for every note head
12 object it sees.
13 "
14   doctitle = "Numbers as easy note heads"
15 }
16
17 #(define Ez_numbers_engraver (list
18   (cons 'acknowledgers
19    (list
20      (cons 'note-head-interface
21        (lambda (engraver grob source-engraver)
22          (let* (
23            (context (ly:translator-context engraver))
24            (tonic-pitch (ly:context-property context 'tonic))
25            (tonic-name (ly:pitch-notename tonic-pitch))
26            (grob-pitch (ly:event-property (event-cause grob) 'pitch))
27            (grob-name (ly:pitch-notename grob-pitch))
28            (delta (modulo (- grob-name tonic-name) 7))
29            (note-names (make-vector 7 (number->string (+ 1 delta)))))
30         (ly:grob-set-property! grob 'note-names note-names))))))))
31
32 #(set-global-staff-size 26)
33
34 \layout {
35   ragged-right = ##t
36   \context {
37     \Voice
38     \consists \Ez_numbers_engraver
39   }
40 }
41
42 \relative c' {
43   \easyHeadsOn
44   c4 d e f
45   g4 a b c \break
46
47   \key a \major
48   a,4 b cis d
49   e4 fis gis a \break
50
51   \key d \dorian
52   d,4 e f g
53   a4 b c d
54 }