]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/fingering-directions.ly
Release: bump Welcome versions.
[lilypond.git] / input / regression / fingering-directions.ly
1 \version "2.19.21"
2
3 \header {
4   texidoc = "Fingering directions in directed and undirected contexts."
5 }
6
7 \layout { ragged-right= ##t }
8
9 {
10   \relative
11   \new Voice {
12     \tempo "\\voiceTwo"
13     \voiceTwo
14     c''2^5 <c^5>
15     c_5 <c_5>
16     c-5 <c-5>
17     \tempo "\\oneVoice"
18     \oneVoice
19     c^5 <c^5>
20     c_5 <c_5>
21     c-5 <c-5>
22   } \addlyrics {
23     \override LyricText . font-size = #-2
24     \override LyricText . font-series = #'bold
25     "c^5" "<c^5>"
26     "c_5" "<c_5>"
27     "c-5" "<c-5>"
28     "c^5" "<c^5>"
29     "c_5" "<c_5>"
30     "c-5" "<c-5>"
31   }
32 }