LEFT | RIGHT |
(no file at all) | |
1 %% DO NOT EDIT this file manually; it is automatically | 1 %% DO NOT EDIT this file manually; it is automatically |
2 %% generated from LSR http://lsr.dsi.unimi.it | 2 %% generated from LSR http://lsr.dsi.unimi.it |
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ , | 3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ , |
4 %% and then run scripts/auxiliar/makelsr.py | 4 %% and then run scripts/auxiliar/makelsr.py |
5 %% | 5 %% |
6 %% This file is in the public domain. | 6 %% This file is in the public domain. |
7 \version "2.16.0" | 7 \version "2.17.6" |
8 | 8 |
9 \header { | 9 \header { |
10 lsrtags = "pitches, staff-notation, vocal-music" | 10 lsrtags = "pitches, staff-notation, vocal-music" |
11 | 11 |
12 texidoc = " | 12 texidoc = " |
13 Ambitus can be added per voice. In this case, the ambitus must be moved | 13 Ambitus can be added per voice. In this case, the ambitus must be moved |
14 manually to prevent collisions. | 14 manually to prevent collisions. |
15 | 15 |
16 " | 16 " |
17 doctitle = "Adding ambitus per voice" | 17 doctitle = "Adding ambitus per voice" |
18 } % begin verbatim | 18 } % begin verbatim |
19 | 19 |
20 | 20 |
21 \new Staff << | 21 \new Staff << |
22 \new Voice \with { | 22 \new Voice \with { |
23 \consists "Ambitus_engraver" | 23 \consists "Ambitus_engraver" |
24 } \relative c'' { | 24 } \relative c'' { |
25 \override Ambitus #'X-offset = #2.0 | 25 \override Ambitus.X-offset = #2.0 |
26 \voiceOne | 26 \voiceOne |
27 c4 a d e | 27 c4 a d e |
28 f1 | 28 f1 |
29 } | 29 } |
30 \new Voice \with { | 30 \new Voice \with { |
31 \consists "Ambitus_engraver" | 31 \consists "Ambitus_engraver" |
32 } \relative c' { | 32 } \relative c' { |
33 \voiceTwo | 33 \voiceTwo |
34 es4 f g as | 34 es4 f g as |
35 b1 | 35 b1 |
36 } | 36 } |
37 >> | 37 >> |
LEFT | RIGHT |