]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/accordion-discant-symbols.ly
Imported Upstream version 2.14.2
[lilypond.git] / Documentation / snippets / accordion-discant-symbols.ly
diff --git a/Documentation/snippets/accordion-discant-symbols.ly b/Documentation/snippets/accordion-discant-symbols.ly
new file mode 100644 (file)
index 0000000..fc62bf4
--- /dev/null
@@ -0,0 +1,200 @@
+%% DO NOT EDIT this file manually; it is automatically
+%% generated from LSR http://lsr.dsi.unimi.it
+%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
+%% and then run scripts/auxiliar/makelsr.py
+%%
+%% This file is in the public domain.
+\version "2.14.0"
+
+\header {
+  lsrtags = "keyboards"
+
+%% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c
+  texidoces = "
+Los símbolos específicos de acordeón discanto se escriben mediante
+@code{\\markup}.  Se puede trucar la colocación vertical de los
+símbolos modificando los argumentos de @code{\\raise}.
+
+"
+  doctitlees = "Símbolos de acordeón discanto"
+
+
+%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
+  doctitlede = "Symbole für Akkordeon-Diskantregister"
+  texidocde = "
+Diskantregister für Akkordeon können mit @code{\\markup} dargestellt werden.
+Die vertikale Position der einzelnen Elemente werden mit @code{\\raise}
+angepasst.
+"
+
+  texidoc = "
+Accordion discant-specific symbols are added using @code{\\markup}. The
+vertical placement of the symbols can be tweaked by changing the
+@code{\\raise} arguments.
+
+
+
+"
+  doctitle = "Accordion-discant symbols"
+} % begin verbatim
+
+discant = \markup {
+  \musicglyph #"accordion.discant"
+}
+dot = \markup {
+  \musicglyph #"accordion.dot"
+}
+
+\layout { ragged-right = ##t }
+
+% 16 voets register
+accBasson = ^\markup {
+  \combine
+  \discant
+  \raise #0.5 \dot
+}
+
+% een korig 8 en 16 voets register
+accBandon = ^\markup {
+  \combine
+    \discant
+    \combine
+      \raise #0.5 \dot
+      \raise #1.5 \dot
+}
+
+accVCello = ^\markup {
+  \combine
+    \discant
+    \combine
+      \raise #0.5 \dot
+      \combine
+        \raise #1.5 \dot
+        \translate #'(1 . 0) \raise #1.5 \dot
+}
+
+% 4-8-16 voets register
+accHarmon = ^\markup {
+  \combine
+    \discant
+    \combine
+      \raise #0.5 \dot
+      \combine
+        \raise #1.5 \dot
+        \raise #2.5 \dot
+}
+
+accTrombon = ^\markup {
+  \combine
+    \discant
+    \combine
+      \raise #0.5 \dot
+      \combine
+        \raise #1.5 \dot
+        \combine
+          \translate #'(1 . 0) \raise #1.5 \dot
+          \translate #'(-1 . 0) \raise #1.5 \dot
+}
+
+% eenkorig 4 en 16 voets register
+accOrgan = ^\markup {
+  \combine
+    \discant
+    \combine
+      \raise #0.5 \dot
+      \raise #2.5 \dot
+}
+
+accMaster = ^\markup {
+  \combine
+    \discant
+    \combine
+      \raise #0.5 \dot
+      \combine
+        \raise #1.5 \dot
+        \combine
+          \translate #'(1 . 0) \raise #1.5 \dot
+          \combine
+            \translate #'(-1 . 0) \raise #1.5 \dot
+            \raise #2.5 \dot
+}
+
+accAccord = ^\markup {
+  \combine
+    \discant
+    \combine
+      \raise #1.5 \dot
+      \combine
+        \translate #'(1 . 0) \raise #1.5 \dot
+        \combine
+          \translate #'(-1 . 0) \raise #1.5 \dot
+          \raise #2.5 \dot
+}
+
+accMusette = ^\markup {
+  \combine
+    \discant
+    \combine
+      \raise #1.5 \dot
+      \combine
+        \translate #'(1 . 0) \raise #1.5 \dot
+        \translate #'(-1 . 0) \raise #1.5 \dot
+}
+
+accCeleste = ^\markup {
+  \combine
+    \discant
+    \combine
+      \raise #1.5 \dot
+      \translate #'(-1 . 0) \raise #1.5 \dot
+}
+
+accOboe = ^\markup {
+  \combine
+    \discant
+    \combine
+      \raise #1.5 \dot
+      \raise #2.5 \dot
+}
+
+accClarin = ^\markup {
+  \combine
+    \discant
+    \raise #1.5 \dot
+}
+
+accPiccolo = ^\markup {
+    \combine
+       \discant
+       \raise #2.5 \dot
+}
+
+accViolin = ^\markup {
+  \combine
+    \discant
+    \combine
+      \raise #1.5 \dot
+      \combine
+        \translate #'(1 . 0) \raise #1.5 \dot
+        \raise #2.5 \dot
+}
+
+\relative c'' {
+  c4 d\accBasson e f
+  c4 d\accBandon e f
+  c4 d\accVCello e f
+  c4 d\accHarmon e f
+  c4 d\accTrombon e f
+  \break
+  c4 d\accOrgan e f
+  c4 d\accMaster e f
+  c4 d\accAccord e f
+  c4 d\accMusette e f
+  c4 d\accCeleste e f
+  \break
+  c4 d\accOboe e f
+  c4 d\accClarin e f
+  c4 d\accPiccolo e f
+  c4 d\accViolin e f
+}
+