]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/adding-ambitus-per-voice.ly
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond into...
[lilypond.git] / Documentation / snippets / adding-ambitus-per-voice.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, staff-notation, vocal-music"
7
8 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
9   doctitlees = "Añadir un ámbito por voz"
10   texidoces = "
11 Se puede añadir un ámbito por cada voz. En este caso, el ámbito se
12 debe desplazar manualmente para evitar colisiones.
13
14 "
15 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
16 texidocde = "
17 Ambitus können pro Stimme gesetzt werden. In diesem Fall müssen sie
18 manual verschoben werden, um Zusammenstöße zu verhindern.
19
20 "
21 doctitlede = "Ambitus pro Stimme hinzufügen"
22
23   texidoc = "
24 Ambitus can be added per voice. In this case, the ambitus must be moved
25 manually to prevent collisions. 
26
27 "
28   doctitle = "Adding ambitus per voice"
29 } % begin verbatim
30
31 \new Staff <<
32   \new Voice \with {
33     \consists "Ambitus_engraver"
34   } \relative c'' {
35     \override Ambitus #'X-offset = #2.0
36     \voiceOne
37     c4 a d e
38     f1
39   }
40   \new Voice \with {
41     \consists "Ambitus_engraver"
42   } \relative c' {
43     \voiceTwo
44     es4 f g as
45     b1
46   }
47 >>
48