]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/new/letter-tablature-formatting.ly
Imported Upstream version 2.16.0
[lilypond.git] / Documentation / snippets / new / letter-tablature-formatting.ly
diff --git a/Documentation/snippets/new/letter-tablature-formatting.ly b/Documentation/snippets/new/letter-tablature-formatting.ly
deleted file mode 100644 (file)
index f97d656..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-\version "2.14.0"
-
-\header {
-  lsrtags = "staff-notation, fretted-strings"
-
-  texidoc = "
-Tablature can be formatted using letters instead of numbers.
-
-"
-  doctitle = "Letter tablature formatting"
-}
-
-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
-  }
->>