]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/ambitus-with-multiple-voices.ly
LSR: Update.
[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 texidocde = "
17 Indem man den @code{Ambitus_engraver} im @code{Staff}-Kontext
18 hinzufügt, erhält man einen einzigen Ambitus pro System, auch in dem
19 Fall, dass mehrere Stimmen sich im gleichen System befinden.
20 "
21   doctitlede = "Ambitus mit vielen Stimmen"
22
23   texidoc = "
24 Adding the @code{Ambitus_engraver} to the @code{Staff} context creates
25 a single ambitus per staff, even in the case of staves with multiple
26 voices. 
27
28 "
29   doctitle = "Ambitus with multiple voices"
30 } % begin verbatim
31 \new Staff \with {
32   \consists "Ambitus_engraver"
33   }
34 <<
35   \new Voice \relative c'' {
36     \voiceOne
37     c4 a d e
38     f1
39   }
40   \new Voice \relative c' {
41     \voiceTwo
42     es4 f g as
43     b1
44   }
45 >>
46