]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/ambitus-with-multiple-voices.ly
Merge branch 'lilypond/translation' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / Documentation / snippets / ambitus-with-multiple-voices.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.4"
5
6 \header {
7   lsrtags = "pitches, vocal-music"
8
9 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
10   doctitlees = "Ámbitos con varias voces"
11   texidoces = "
12 La adición del grabador @code{Ambitus_engraver} al contexto de
13 @code{Staff} crea un solo ámbito por pentagrama, incluso en el caso de
14 pentagramas con varias voces.
15
16 "
17
18
19 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
20   texidocde = "
21 Indem man den @code{Ambitus_engraver} im @code{Staff}-Kontext
22 hinzufügt, erhält man einen einzigen Ambitus pro System, auch in dem
23 Fall, dass mehrere Stimmen sich im gleichen System befinden.
24 "
25   doctitlede = "Ambitus mit vielen Stimmen"
26
27   texidoc = "
28 Adding the @code{Ambitus_engraver} to the @code{Staff} context creates
29 a single ambitus per staff, even in the case of staves with multiple
30 voices.
31
32 "
33   doctitle = "Ambitus with multiple voices"
34 } % begin verbatim
35
36 \new Staff \with {
37   \consists "Ambitus_engraver"
38   }
39 <<
40   \new Voice \relative c'' {
41     \voiceOne
42     c4 a d e
43     f1
44   }
45   \new Voice \relative c' {
46     \voiceTwo
47     es4 f g as
48     b1
49   }
50 >>
51
52