]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/letter-tablature-formatting.ly
resolve merge
[lilypond.git] / Documentation / snippets / letter-tablature-formatting.ly
diff --git a/Documentation/snippets/letter-tablature-formatting.ly b/Documentation/snippets/letter-tablature-formatting.ly
new file mode 100644 (file)
index 0000000..db67212
--- /dev/null
@@ -0,0 +1,46 @@
+% 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 = "
+La tablatura se puede formatear utilizando letras en lugar de nĂºmeros.
+
+"
+
+  doctitlees = "Formateado de tablaturas con letras"
+
+  lsrtags = "staff-notation, fretted-strings"
+
+  texidoc = "
+Tablature can be formatted using letters instead of numbers.
+
+"
+  doctitle = "Letter tablature formatting"
+} % begin verbatim
+
+
+music = \relative c {
+  c4 d e f
+  g4 a b c
+  d4 e f g
+}
+
+<<
+  \new Staff {
+    \clef "G_8"
+    \music
+  }
+  \new TabStaff \with {
+    tablatureFormat = #fret-letter-tablature-format
+  }
+  {
+    \music
+  }
+>>