]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/ambitus-with-multiple-voices.ly
Split WWW target in two stages WWW-1 and WWW-2
[lilypond.git] / input / lsr / ambitus-with-multiple-voices.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, vocal-music"
7
8   texidoc = "
9 Adding the @code{Ambitus_engraver} to the @code{Staff} context create a
10 single ambitus per staff, even in the case of staves with multiple
11 voices. 
12
13 "
14   doctitle = "Ambitus with multiple voices"
15 } % begin verbatim
16 \new Staff \with {
17   \consists "Ambitus_engraver"
18   }
19 <<
20   \new Voice \relative c'' {
21     \voiceOne
22     c4 a d e
23     f1
24   }
25   \new Voice \relative c' {
26     \voiceTwo
27     es4 f g as
28     b1
29   }
30 >>
31