]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/changing-the-ambitus-gap.ly
Allow open strings in chords regardless of finger positions
[lilypond.git] / Documentation / snippets / changing-the-ambitus-gap.ly
1 % DO NOT EDIT this file manually; it is automatically
2 % generated from Documentation/snippets/new
3 % Make any changes in Documentation/snippets/new/
4 % and then run scripts/auxiliar/makelsr.py
5 %
6 % This file is in the public domain.
7 %% Note: this file works from version 2.14.0
8 \version "2.14.0"
9 \header {
10 %% Translation of GIT committish: 6977ddc9a3b63ea810eaecb864269c7d847ccf98
11
12   texidoces = "
13 Es posible ajustar la separación en las indicaciones de tesitura.
14
15 "
16
17   doctitlees = "Modificación de la separación en las indicaciones de tesitura"
18
19 %% Translation of GIT committish: 31097723b2b816696ad61696630a80ff17a39557
20   texidocfr = "
21 L'affichage d'un @emph{ambitus} peut s'affiner pour répondre à vos
22 préférences en matière d'esthétique.
23 "
24   doctitlefr = "Réglage de l'affichage d'un ambitus"
25
26
27   lsrtags = "pitches"
28   texidoc = "It is possible to change the default gap setting for
29 ambitus."
30
31   doctitle = "Changing the ambitus gap"
32 } % begin verbatim
33
34
35
36 \layout {
37   \context {
38     \Voice
39     \consists "Ambitus_engraver"
40   }
41 }
42
43 \new Staff {
44   \time 2/4
45   % Default setting
46   c'4 g''
47 }
48
49 \new Staff {
50   \time 2/4
51   \override AmbitusLine #'gap = #0
52   c'4 g''
53 }
54
55 \new Staff {
56   \time 2/4
57   \override AmbitusLine #'gap = #1
58   c'4 g''
59 }
60
61 \new Staff {
62   \time 2/4
63   \override AmbitusLine #'gap = #1.5
64   c'4 g''
65 }