]> git.donarmstrong.com Git - lilypond.git/commitdiff
Remove old LSR snippets.
authorGraham Percival <graham@percival-music.ca>
Fri, 16 Feb 2007 23:17:38 +0000 (15:17 -0800)
committerGraham Percival <graham@percival-music.ca>
Fri, 16 Feb 2007 23:17:38 +0000 (15:17 -0800)
input/lsr/spacing/Page-layout-twopass.ly [deleted file]
input/lsr/spacing/Proportional-spacing.ly [deleted file]
input/lsr/spacing/Proportional-strict-grace-notes.ly [deleted file]
input/lsr/spacing/Proportional-strict-notespacing.ly [deleted file]

diff --git a/input/lsr/spacing/Page-layout-twopass.ly b/input/lsr/spacing/Page-layout-twopass.ly
deleted file mode 100644 (file)
index 7e85403..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-\version "2.10.12"
-
-\header { texidoc = "
-Page breaking details can be stored for later reference.
-
-(you should run this snippet on your own computer; we cannot compute the two-pass layout here)
-" }
-
-\paper  {
-  #(define write-page-layout #t)
-}
-
-bla = \new Staff {
-  c1 c1
-  \break
-  \grace { c16 } c1\break
-  \repeat unfold 5 \relative { c1 c1 c1 }
-}
-
-
-\book {
-  \score {
-    \bla
-    \layout {
-      #(define tweak-key "blabla")
-    }
-  }
-}
-
-tweakFileName = #(format "~a-page-layout.ly" (ly:parser-output-name parser))
-
-#(newline)
-
-#(ly:progress "Contents of: '~a'" (ly:gulp-file tweakFileName))
diff --git a/input/lsr/spacing/Proportional-spacing.ly b/input/lsr/spacing/Proportional-spacing.ly
deleted file mode 100644 (file)
index 20efc39..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-\version "2.10.12"
-
-\header { texidoc = "
-Proportional notation can be created by setting @{proportionalNotationDuration@}. Notes will be spaced proportional to the distance for the given duration.
-" }
-
-\paper {
-  ragged-right = ##t 
-}
-
-\relative c''
-<<
-  \set Score.proportionalNotationDuration = #(ly:make-moment 1 16)
-  \new Staff { c8[ c c c c c] c4 c2 r2 }
-  \new Staff { c2 \times 2/3 { c8 c c } c4 c1 }
->>
-
diff --git a/input/lsr/spacing/Proportional-strict-grace-notes.ly b/input/lsr/spacing/Proportional-strict-grace-notes.ly
deleted file mode 100644 (file)
index 401f837..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-\version "2.10.12"
-
-\header { texidoc = "
-With @{strict-note-spacing@} spacing for grace notes (even multiple ones), is floating as well.
-" }
-
-\paper {
-  ragged-right = ##t
-  indent = 0
-}
-
-\relative c''
-{
-  \override Score.SpacingSpanner #'strict-note-spacing = ##t 
-  \set Score.proportionalNotationDuration = #(ly:make-moment 1 12)
-  c8[ \grace { c16[ c] } c8 c8 c8] 
-  c2 
-}  
diff --git a/input/lsr/spacing/Proportional-strict-notespacing.ly b/input/lsr/spacing/Proportional-strict-notespacing.ly
deleted file mode 100644 (file)
index 664ef4c..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-\version "2.10.12"
-
-\header { texidoc = "
-If @code{strict-note-spacing} is set, then spacing of notes is not influenced by bars and clefs half-way on the system.  Rather, they are put just before the note that occurs at the same time.  This may cause collisions.
-" }
-
-\paper {
-  ragged-right = ##t
-  indent = 0
-}
-\layout {
-  \context {
-    \Score
-  }
-}
-
-\relative c'' <<
-  \override Score.SpacingSpanner #'strict-note-spacing = ##t 
-  \set Score.proportionalNotationDuration = #(ly:make-moment 1 16)
-  \new Staff {
-    c8[ c \clef alto c c \grace { d16 }  c8 c]  c4 c2
-    \grace { c16[ c16] }
-    c2 }
-  \new Staff {
-    c2  \times 2/3 { c8 \clef bass cis,, c } 
-    c4
-    c1
-  }
->>