]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/ambitus-with-multiple-voices.ly
fb743c6f3b1f376339f57c2a20a89c7fe72d3ec0
[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.13.1"
4
5 \header {
6   lsrtags = "pitches, vocal-music"
7
8 %% Translation of GIT committish: 48f804da6794a7bc8e7fdd4b1649f485b0b09d26
9   doctitlees = "Ámbitos con varias voces"
10   texidoces = "
11 La adición del grabador @code{Ambitus_engraver} al contexto de
12 @code{Staff} crea un solo ámbito por pentagrama, incluso en el caso de
13 pentagramas con varias voces.
14
15 "
16
17 %% Translation of GIT committish: e75f1604a1b866c853dee42dbffcb7800c706a5f
18   texidocde = "
19 Indem man den @code{Ambitus_engraver} im @code{Staff}-Kontext
20 hinzufügt, erhält man einen einzigen Ambitus pro System, auch in dem
21 Fall, dass mehrere Stimmen sich im gleichen System befinden.
22 "
23   doctitlede = "Ambitus mit vielen Stimmen"
24
25   texidoc = "
26 Adding the @code{Ambitus_engraver} to the @code{Staff} context creates
27 a single ambitus per staff, even in the case of staves with multiple
28 voices. 
29
30 "
31   doctitle = "Ambitus with multiple voices"
32 } % begin verbatim
33
34 \new Staff \with {
35   \consists "Ambitus_engraver"
36   }
37 <<
38   \new Voice \relative c'' {
39     \voiceOne
40     c4 a d e
41     f1
42   }
43   \new Voice \relative c' {
44     \voiceTwo
45     es4 f g as
46     b1
47   }
48 >>
49
50