]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/adding-ambiti-per-voice.ly
Merge branch 'master' of ssh+git://git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / input / lsr / adding-ambiti-per-voice.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 %% Tags: pitches, staff-notation, vocal-music
4 \version "2.11.35"
5
6 \header { texidoc = "
7 Ambits can be added per voice. In that case, the ambitus must be moved
8 manually to prevent collisions. 
9 " }
10 % begin verbatim
11 \new Staff <<
12   \new Voice \with {
13     \consists "Ambitus_engraver"
14   } \relative c'' {
15     \override Ambitus #'X-offset = # 2.0
16     \voiceOne
17     c4 a d e f1
18   }
19   \new Voice \with {
20     \consists "Ambitus_engraver"
21   } \relative c' {
22     \voiceTwo
23         es4 f g as b1
24   }
25 >>