]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/changing-the-ambitus-gap.ly
Imported Upstream version 2.14.2
[lilypond.git] / Documentation / snippets / changing-the-ambitus-gap.ly
diff --git a/Documentation/snippets/changing-the-ambitus-gap.ly b/Documentation/snippets/changing-the-ambitus-gap.ly
new file mode 100644 (file)
index 0000000..16620f7
--- /dev/null
@@ -0,0 +1,65 @@
+% DO NOT EDIT this file manually; it is automatically
+% generated from Documentation/snippets/new
+% Make any changes in Documentation/snippets/new/
+% and then run scripts/auxiliar/makelsr.py
+%
+% This file is in the public domain.
+%% Note: this file works from version 2.14.0
+\version "2.14.0"
+\header {
+%% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
+
+  texidoces = "
+Es posible ajustar la separación en las indicaciones de tesitura.
+
+"
+
+  doctitlees = "Modificación de la separación en las indicaciones de tesitura"
+
+%% Translation of GIT committish: 31097723b2b816696ad61696630a80ff17a39557
+  texidocfr = "L'affichage d'un @emph{ambitus} peut s'affiner pour
+  répondre à vos préférences en matière d'esthétique.
+"
+
+  doctitlefr = "Réglage de l'affichage d'un ambitus"
+
+
+  lsrtags = "pitches"
+  texidoc = "It is possible to change the default gap setting for
+ambitus."
+
+  doctitle = "Changing the ambitus gap"
+} % begin verbatim
+
+
+
+\layout {
+  \context {
+    \Voice
+    \consists "Ambitus_engraver"
+  }
+}
+
+\new Staff {
+  \time 2/4
+  % Default setting
+  c'4 g''
+}
+
+\new Staff {
+  \time 2/4
+  \override AmbitusLine #'gap = #0
+  c'4 g''
+}
+
+\new Staff {
+  \time 2/4
+  \override AmbitusLine #'gap = #1
+  c'4 g''
+}
+
+\new Staff {
+  \time 2/4
+  \override AmbitusLine #'gap = #1.5
+  c'4 g''
+}