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