]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/adding-ambitus-per-voice.ly
Merge master into nested-bookparts
[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.11.62"
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   texidoc = "
16 Ambitus can be added per voice. In this case, the ambitus must be moved
17 manually to prevent collisions. 
18
19 "
20   doctitle = "Adding ambitus per voice"
21 } % begin verbatim
22 \new Staff <<
23   \new Voice \with {
24     \consists "Ambitus_engraver"
25   } \relative c'' {
26     \override Ambitus #'X-offset = #2.0
27     \voiceOne
28     c4 a d e
29     f1
30   }
31   \new Voice \with {
32     \consists "Ambitus_engraver"
33   } \relative c' {
34     \voiceTwo
35     es4 f g as
36     b1
37   }
38 >>