]> git.donarmstrong.com Git - lilypond.git/commitdiff
LSR: more setup.
authorGraham Percival <graham@percival-music.ca>
Sat, 1 Dec 2007 06:57:07 +0000 (22:57 -0800)
committerGraham Percival <graham@percival-music.ca>
Sat, 1 Dec 2007 06:57:07 +0000 (22:57 -0800)
input/lsr/LSR.ly
input/lsr/guitar/letter-tablature-formatting.ly [deleted file]

index d09fd1e7d130362920d2f8b566e98c4b52bda6f3..c65f746a02bad0080fed9c730a8a90851d869638 100644 (file)
@@ -8,6 +8,7 @@ These pages show LilyPond examples (snippets) from the
 @subheading 1 Musical notation
 
 @uref{pitches/collated-files.html,Pitches}
+(@uref{pitches/collated-files.pdf,pdf link})
 
 @uref{rhythms/collated-files.html,Rhythms}
 (@uref{rhythms/collated-files.pdf,pdf link})
@@ -23,57 +24,31 @@ These pages show LilyPond examples (snippets) from the
 @uref{text/collated-files.html,Text}
 
 
+@subheading 1 Specialist notation
 
+@uref{vocal/collated-files.html,Vocal}
 
+@uref{chords/collated-files.html,Chords}
 
-@subheading Special collections
-
-@strong{@uref{real-music/collated-files.html,Real music}}
-
-@strong{@uref{scheme/collated-files.html,Advanced stuff with
-scheme}} (actually, still old stuff)
-
-
-@sp 5
-
-@subheading old stuffs
-
-@strong{@uref{ancient/collated-files.html,Ancient}}
+@uref{piano/collated-files.html,Piano}
 
-@strong{@uref{chords/collated-files.html,Chords}}
+@uref{percussion/collated-files.html,Percussion}
 
-@strong{@uref{connecting/collated-files.html,Connecting notes}}
+@uref{guitar/collated-files.html,Guitar}
 
-@strong{@uref{contemporary/collated-files.html,Contemporary notation}}
+@uref{strings/collated-files.html,Strings}
 
-@strong{@uref{expressive/collated-files.html,Expressive marks}}
+@uref{bagpipes/collated-files.html,Bagpipes}
 
-@strong{@uref{education/collated-files.html,Education}}
+@uref{ancient/collated-files.html,Ancient}
 
-@strong{@uref{guitar/collated-files.html,Guitar notation}}
 
-@strong{@uref{parts/collated-files.html,Preparing parts}}
 
-@strong{@uref{repeats/collated-files.html,Repeats}}
-
-@strong{@uref{spacing/collated-files.html,Spacing issues}}
-
-@strong{@uref{staff/collated-files.html,Staff notation}}
-
-@strong{@uref{text/collated-files.html,Text}}
-
-@strong{@uref{vocal/collated-files.html,Vocal music}}
-
-@strong{@uref{nonmusic/collated-files.html,Non-musical}}
-
-@strong{@uref{instrument/collated-files.html,Instrument-specific}}
+@subheading Special collections
 
-@strong{@uref{engravers/collated-files.html,Engravers}}
+@uref{other/collated-files.html,other}
 
-@strong{@uref{scheme/collated-files.html,Advanced stuff with scheme}}
 
-@strong{@uref{other/collated-files.html,Other: snippets that do not fit
-into the above categories.}}
 "
 }
 
diff --git a/input/lsr/guitar/letter-tablature-formatting.ly b/input/lsr/guitar/letter-tablature-formatting.ly
deleted file mode 100644 (file)
index dce49da..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-%%  Do not edit this file; it is auto-generated from LSR!
-\version "2.10.12"
-
-\header { texidoc = "
-You can format a tablature with letters instead of numbers - so that
-0->a, 1->b, 2->c, etc. 
-" }
-
-#(define (letter-tablature-format str tuning pitch)
-    (make-whiteout-markup
-     (make-vcenter-markup
-      (string (integer->char 
-              (+ (char->integer #\a)
-               (- (ly:pitch-semitones pitch)
-                (list-ref tuning (- str 1)))))))))
-
-
-muz = \relative c { c d e f g a b c d e f g }
-
-<<
-  \new TabStaff
-  { 
-    \muz 
-  }
-  \new Staff
-  {
-    \clef "G_8" \muz
-  }
-  \new TabStaff \with { tablatureFormat = #letter-tablature-format }
-  {
-    \muz
-  }
->>
-