summaryrefslogtreecommitdiff
path: root/Documentation/snippets/text-headword.ly
blob: 0bcd3763efa7bbb4885d5a2031b11a1fc70c536d (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
%% DO NOT EDIT this file manually; it is automatically
%% generated from LSR http://lsr.dsi.unimi.it
%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
%% and then run scripts/auxiliar/makelsr.py
%%
%% This file is in the public domain.
\version "2.17.28"

\header {
  lsrtags = "headword"

  texidoc = "
Text headword

"
  doctitle = "Text headword"
} % begin verbatim

\include "english.ly"

% NR 1.8 Text

% L. v. Beethoven, Op. 110
% Piano sonata 31
% measures 1 - 7

\layout {
  \context {
    \Score
    \override SpacingSpanner.base-shortest-duration =
    #(ly:make-moment 1/20)
  }
}

\new PianoStaff <<

  % RH staff
  \new Staff {
    \clef treble
    \key af \major
    \time 3/4

    \once \override TextScript.staff-padding = #4
    <c'' af'>4. (
    _ \markup { \dynamic p \italic { con amabilità } }
    <af' ef'>8 )
    <af' ef'>8. [
    <af' ef'>16 ]

    |

    <df'' g'>4
    <bf' g'>2
    _ \markup { \italic { ten. } }

    |

    <<

      \new Voice {
        \voiceOne
        ef''4. (
        df''8 [ )
        ef'' (
        f'' ) ]

        |

        \once \override TextScript.staff-padding = #4
        ef''8. (
        _ \markup { \italic { tranqu. } }
        d''16 )
        df''8 \trill \fermata
        _ \markup { \italic { ten. } }
      }

      \new Voice {
        \voiceTwo
        af'4.
        af'8 [
        af'8
        af'8 ]

        |

        g'4
        g'8
      }

    >>

    \oneVoice
    \once \override TextScript.staff-padding = #4
    df''32
    _ \markup { \italic dolce }
    c''32
    df''32
    ef''32
    \acciaccatura { df'' ef''  }
    f''8
    ef''16
    df''16

    |
    \break
    \overrideProperty Score.NonMusicalPaperColumn.line-break-system-details #'((alignment-distances . (12)))

    c''4. (
    ^ \markup \italic { cantabile, con intimissimo sentimento,
      ma sempre molto dolce e semplice }
    ef''4
    af''8 )

    |

    af''4 (
    g''2 )

    |

    bf''4. (
    g''4
    ef''8 )

    |
  }

  % LH
  \new Staff {
    \clef bass
    \key af \major
    \time 3/4

    <ef af,>4. (
    <ef c>8 )
    <ef c>8. [
    <ef c>16 ]

    |

    <ef bf,>4
    <ef df>2 ^ \markup { \italic ten. }

    |

    <<

      \new Voice {
        \voiceOne
        ef8 [ (
        af8
        c'8
        bf8 )
        c'8 ( \staccato
        df'8 ]  ) \staccato

        |

        bf4
        bf8 ^ \markup { \italic ten. }
      }

      \new Voice {
        \voiceTwo
        c4. (
        f8 [ )
        ef8 ( \staccato
        df8 ] ) \staccato

        |

        ef4
        ef8 \fermata
      }

    >>

    \oneVoice
    r8
    r4
    \clef treble

    |

    \override Staff.SustainPedalLineSpanner.outside-staff-priority = #1000
    \override Staff.SustainPedalLineSpanner.staff-padding = #7
    \once \override TextScript.padding = #2
    af16 \sustainOn
    ^ \markup \italic { non staccato }
    _ \markup \italic { molto \concat { \dynamic { p } , } sempre tranquillo
      ed egualmente, non rubato }
    <ef' c'>16
    <ef' c'>16
    <ef' c'>16
    af16
    <ef' c'>16
    <ef' c'>16
    <ef' c'>16
    af16 \sustainOn
    <ef' c'>16
    <ef' c'>16
    <ef' c'>16

    |

    bf16 \sustainOn
    <ef' df'>16
    <ef' df'>16
    <ef' df'>16
    bf16 \sustainOn
    <ef' df'>16
    <ef' df'>16
    <ef' df'>16
    bf16
    <ef' df'>16
    <ef' df'>16
    <ef' df'>16

    |

    \override Staff.SustainPedalLineSpanner.staff-padding = #4
    df'16 \sustainOn
    <bf' g' ef'>16
    <bf' g' ef'>16
    <bf' g' ef'>16
    df'16
    <bf' g' ef'>16
    <bf' g' ef'>16
    <bf' g' ef'>16
    df'16 \sustainOn
    <bf' g' ef'>16
    <bf' g' ef'>16
    <bf' g' ef'>16

    |
  }

>>