]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/kievan-notation.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / kievan-notation.ly
1 \version "2.19.21"
2
3 \header {
4   texidoc = "LilyPond typesets Kievan notation.
5 "
6 }
7
8 % Font settings for Cyrillic
9 % Linux Libertine fonts contain Cyrillic glyphs.
10 \paper {
11   #(define fonts
12     (set-global-fonts
13      #:roman "Linux Libertine O,serif"
14      #:sans "Linux Biolinum O,sans-serif"
15      #:typewriter "Linux Libertine Mono O,monospace"
16    ))
17 }
18
19 \score {
20   <<
21     \new KievanVoice = "melody" \transpose c c' {
22       \cadenzaOn
23         c4 c8 c8[ d8] c4 c2 b,\longa
24         \bar "k"
25     }
26     \new Lyrics \lyricsto "melody" {
27       Го -- спо -- ди по -- ми -- луй.
28     }
29   >>
30 }