From: Graham Percival Date: Sat, 1 Dec 2007 06:57:07 +0000 (-0800) Subject: LSR: more setup. X-Git-Tag: release/2.11.36-1~43 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=39d40d76cce9b64dc0931d03ec4f7f0b75b339c8;p=lilypond.git LSR: more setup. --- diff --git a/input/lsr/LSR.ly b/input/lsr/LSR.ly index d09fd1e7d1..c65f746a02 100644 --- a/input/lsr/LSR.ly +++ b/input/lsr/LSR.ly @@ -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 index dce49da03e..0000000000 --- a/input/lsr/guitar/letter-tablature-formatting.ly +++ /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 - } ->> -