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