]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/changing-the-size-of-woodwind-diagrams.ly
Imported Upstream version 2.14.2
[lilypond.git] / Documentation / snippets / changing-the-size-of-woodwind-diagrams.ly
diff --git a/Documentation/snippets/changing-the-size-of-woodwind-diagrams.ly b/Documentation/snippets/changing-the-size-of-woodwind-diagrams.ly
new file mode 100644 (file)
index 0000000..14a5bfe
--- /dev/null
@@ -0,0 +1,70 @@
+% 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 = "
+
+Se puede cambiar el tamaño y grosor de las líneas de los diagramas de
+posiciones para instrumentos de viento madera.
+
+"
+
+  doctitlees = "Modificar el tamaño de los diagramas de viento madera"
+
+%%%    Translation of GIT committish: ab9e3136d78bfaf15cc6d77ed1975d252c3fe506
+
+
+  texidocde="
+Die Größe und Dicke der Holzbläserdiagramme kann geändert werden.
+"
+
+  doctitlede = "Größe von Holzbläserdiagrammen ändern"
+
+
+%% Translation of GIT committish: 496c48f1f2e4d345ae3637b2c38ec748a55cda1d
+  texidocfr = "
+La taille et l'épaisseur des diagrammes de doigté pour bois est modifiable
+à souhait.
+
+"
+
+  doctitlefr = "Modification de la taille d'un diagramme pour bois"
+
+
+  lsrtags="winds"
+  texidoc="
+The size and thickness of woodwind diagrams can be changed.
+"
+
+  doctitle = "Changing the size of woodwind diagrams"
+} % begin verbatim
+
+
+\relative c'' {
+  \textLengthOn
+  c1^\markup
+    \woodwind-diagram
+      #'piccolo
+      #'()
+
+  c^\markup
+    \override #'(size . 1.5) {
+      \woodwind-diagram
+        #'piccolo
+        #'()
+    }
+  c^\markup
+    \override #'(thickness . 0.15) {
+      \woodwind-diagram
+        #'piccolo
+        #'()
+    }
+}