]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/ambitus-with-multiple-voices.ly
Merge remote-tracking branch 'origin/master' into translation
[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.di.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.18.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 \new Staff \with {
22   \consists "Ambitus_engraver"
23   }
24 <<
25   \new Voice \relative c'' {
26     \voiceOne
27     c4 a d e
28     f1
29   }
30   \new Voice \relative c' {
31     \voiceTwo
32     es4 f g as
33     b1
34   }
35 >>