]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/adding-ambitus-per-voice.ly
Split WWW target in two stages WWW-1 and WWW-2
[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.46"
4
5 \header {
6   lsrtags = "pitches, staff-notation, vocal-music"
7
8   texidoc = "
9 Ambitus can be added per voice. In this case, the ambitus must be moved
10 manually to prevent collisions. 
11
12 "
13   doctitle = "Adding ambitus per voice"
14 } % begin verbatim
15 \new Staff <<
16   \new Voice \with {
17     \consists "Ambitus_engraver"
18   } \relative c'' {
19     \override Ambitus #'X-offset = #2.0
20     \voiceOne
21     c4 a d e
22     f1
23   }
24   \new Voice \with {
25     \consists "Ambitus_engraver"
26   } \relative c' {
27     \voiceTwo
28     es4 f g as
29     b1
30   }
31 >>