]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/ambitus-with-multiple-voices.ly
Merge master into nested-bookparts
[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.62"
4
5 \header {
6   lsrtags = "pitches, vocal-music"
7
8   doctitlees = "Ámbitos con varias voces"
9   texidoces = "
10 La adición del grabador @code{Ambitus_engraver} al contexto de
11 @code{Staff} crea un solo ámbito por pentagrama, incluso en el caso de
12 pentagramas con varias voces.
13
14 "
15
16
17   texidoc = "
18 Adding the @code{Ambitus_engraver} to the @code{Staff} context creates
19 a single ambitus per staff, even in the case of staves with multiple
20 voices. 
21
22 "
23   doctitle = "Ambitus with multiple voices"
24 } % begin verbatim
25 \new Staff \with {
26   \consists "Ambitus_engraver"
27   }
28 <<
29   \new Voice \relative c'' {
30     \voiceOne
31     c4 a d e
32     f1
33   }
34   \new Voice \relative c' {
35     \voiceTwo
36     es4 f g as
37     b1
38   }
39 >>
40