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