]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/ambitus-with-multiple-voices.ly
Doc-es: pre-merge update of texidoc committishes.
[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   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
32 \new Staff \with {
33   \consists "Ambitus_engraver"
34   }
35 <<
36   \new Voice \relative c'' {
37     \voiceOne
38     c4 a d e
39     f1
40   }
41   \new Voice \relative c' {
42     \voiceTwo
43     es4 f g as
44     b1
45   }
46 >>
47