]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/new/editorial-headword.ly
6ae939e0fdbe5a40326f59c7dbcc300fb8de9168
[lilypond.git] / Documentation / snippets / new / editorial-headword.ly
1 \version "2.13.36"
2 \include "english.ly"
3 #(set-global-staff-size 15)
4 \paper {
5   ragged-right = ##t
6   line-width = 17\cm
7   indent = 0\cm
8 }
9
10
11 \header {
12   lsrtags = "headwords"
13   texidoc = ""
14   doctitle = "headword"
15 }
16
17 % NR 1.7 Editorial annotations
18
19 % Beethoven, Op. 31, No. 3
20 % Piano sonata 18, Movt II, Scherzo
21 % Measures 9 - 14
22
23 \new PianoStaff <<
24
25   % RH Staff
26   \new Staff {
27     \clef treble
28     \key af \major
29     \time 2/4
30     \set Staff.fingeringOrientations = #'(up)
31     \set Score.currentBarNumber = #9
32     \partial 8
33     <af''-4 c''>8 \staccato
34     |
35     \set doubleSlurs = ##t
36     <bf''-5 df''-2>4 (
37     <af''-4 c''>8 \staccato )
38     \noBeam
39     c''8-5 \staccato \pp
40     |
41     \set doubleSlurs = ##f
42     bf'8.. (
43     af'32
44     g'8 ) \staccato
45     f'8 \staccato
46     |
47     e'4-2
48     r8
49     \once \override Script #'script-priority = #-100
50     \afterGrace
51     f'8 ( \trill ^ \markup { \finger "3-2" }
52     { e'16 [ f'16 ] }
53     |
54     g'8..-3
55     f'32
56     e'8-1 ) \staccato
57     d'8-2 \staccato
58     |
59     c'4
60     r4
61   }
62
63   % LH Staff
64   \new Staff {
65     \key af \major
66     \clef treble
67     \override Fingering #'direction = #down
68     \set Staff.fingeringOrientations = #'(down)
69     \partial 8
70     <af' af>8 \staccato
71     \set doubleSlurs = ##t
72     <g'-2 ef'-3>4 (
73     <af' af>8 ) \staccato
74     \noBeam
75     \clef bass
76     c'8-1 \staccato
77     |
78     \set doubleSlurs = ##f
79     bf8.. (
80     af32
81     g8-1 ) \staccato
82     f8 \staccato
83     |
84     e4
85     r8
86     \afterGrace
87     f8 ( \trill _ \markup { \finger "2-1" }
88     { e16 [ f16 ] }
89     |
90     g8..-1
91     f32
92     e8 ) \staccato
93     d8 \staccato
94     |
95     c4
96     r4
97   }
98
99 >>