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