]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/ambiti-multiple-voices.ly
Merge branch 'master' of ssh+git://git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / input / lsr / ambiti-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.38"
4
5 \header {
6   lsrtags = "pitches, vocal-music"
7  texidoc = "
8 If you have multiple voices in a single staff and you want a single
9 ambitus per staff rather than per voice, add the
10 @code{Ambitus_engraver} to the @code{Staff} context rather than to the
11 @code{Voice} context. 
12 " }
13 % begin verbatim
14 \new Staff \with {
15   \consists "Ambitus_engraver"
16   }
17 <<
18   \new Voice \relative c'' {
19       \voiceOne
20       c4 a d e f1
21     }
22   \new Voice \relative c' {
23       \voiceTwo
24       es4 f g as b1
25     }
26 >>
27