]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/ambitus-with-multiple-voices.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / ambitus-with-multiple-voices.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.16.0"
8
9 \header {
10   lsrtags = "pitches, vocal-music"
11
12   texidoc = "
13 Adding the @code{Ambitus_engraver} to the @code{Staff} context creates
14 a single ambitus per staff, even in the case of staves with multiple
15 voices.
16
17 "
18   doctitle = "Ambitus with multiple voices"
19 } % begin verbatim
20
21
22 \new Staff \with {
23   \consists "Ambitus_engraver"
24   }
25 <<
26   \new Voice \relative c'' {
27     \voiceOne
28     c4 a d e
29     f1
30   }
31   \new Voice \relative c' {
32     \voiceTwo
33     es4 f g as
34     b1
35   }
36 >>