]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/adding-ambitus-per-voice.ly
Merge branch 'master' of ssh+git://git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / input / lsr / adding-ambitus-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 \version "2.11.38"
4
5 \header {
6   lsrtags = "pitches, staff-notation, vocal-music"
7  texidoc = "
8 Ambitus can be added per voice. In this case, the ambitus must be moved
9 manually to prevent collisions. 
10 " }
11 % begin verbatim
12 \new Staff <<
13   \new Voice \with {
14     \consists "Ambitus_engraver"
15   } \relative c'' {
16     \override Ambitus #'X-offset = #2.0
17     \voiceOne
18     c4 a d e f1
19   }
20   \new Voice \with {
21     \consists "Ambitus_engraver"
22   } \relative c' {
23     \voiceTwo
24     es4 f g as b1
25   }
26 >>