From: Graham Percival Date: Fri, 16 Feb 2007 23:17:38 +0000 (-0800) Subject: Remove old LSR snippets. X-Git-Tag: release/2.11.19-1^2~1 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=b3d15d6a7c6574b657ff990ef95fb42b59691291;p=lilypond.git Remove old LSR snippets. --- diff --git a/input/lsr/spacing/Page-layout-twopass.ly b/input/lsr/spacing/Page-layout-twopass.ly deleted file mode 100644 index 7e85403a5e..0000000000 --- a/input/lsr/spacing/Page-layout-twopass.ly +++ /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 index 20efc39671..0000000000 --- a/input/lsr/spacing/Proportional-spacing.ly +++ /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 index 401f83771e..0000000000 --- a/input/lsr/spacing/Proportional-strict-grace-notes.ly +++ /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 index 664ef4c504..0000000000 --- a/input/lsr/spacing/Proportional-strict-notespacing.ly +++ /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 - } ->>