]> git.donarmstrong.com Git - lilypond.git/commitdiff
Remove stray ';' in file names.
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Sun, 23 Mar 2008 18:13:57 +0000 (15:13 -0300)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Sun, 23 Mar 2008 18:13:57 +0000 (15:13 -0300)
input/lsr/editorial-and-educational-use.snippet-list
input/lsr/grid-lines-adding-vertical-lines-between-staves.ly [new file with mode: 0644]
input/lsr/grid-lines-changing-their-appearance.ly [new file with mode: 0644]
input/lsr/grid-lines-emphasizing-rhythms-and-notes-synchronization.ly [new file with mode: 0644]
input/lsr/grid-lines;-adding-vertical-lines-between-staves.ly [deleted file]
input/lsr/grid-lines;-changing-their-appearance.ly [deleted file]
input/lsr/grid-lines;-emphasizing-rhythms-and-notes-synchronization.ly [deleted file]

index 6b73eaba9ce26c059c6918509d8a57df32cc88d3..0bcda7f31a5a967382d567fcfffdf78a8ac88edd 100644 (file)
@@ -3,9 +3,9 @@ changing-the-appearance-of-a-slur-from-solid-to-dotted-or-dashed.ly
 putting-parentheses-around-a-single-note.ly
 changing-the-default-text-font-family.ly
 changing-the-size-of-note-heads.ly
-grid-lines;-adding-vertical-lines-between-staves.ly
+grid-lines-adding-vertical-lines-between-staves.ly
 creating-blank-staves.ly
-grid-lines;-changing-their-appearance.ly
+grid-lines-changing-their-appearance.ly
 coloring-objects.ly
 allowing-fingerings-to-be-printed-inside-the-staff.ly
 default-direction-of-stems-on-the-center-line-of-the-staff.ly
@@ -25,5 +25,5 @@ changing-a-single-notes-size-in-a-chord.ly
 putting-parentheses-around-non-note-objects.ly
 three-sided-box.ly
 hiding-notes.ly
-grid-lines;-emphasizing-rhythms-and-notes-synchronization.ly
+grid-lines-emphasizing-rhythms-and-notes-synchronization.ly
 coloring-elements-of-notation.ly
diff --git a/input/lsr/grid-lines-adding-vertical-lines-between-staves.ly b/input/lsr/grid-lines-adding-vertical-lines-between-staves.ly
new file mode 100644 (file)
index 0000000..2540365
--- /dev/null
@@ -0,0 +1,42 @@
+%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
+%% This file is in the public domain.
+\version "2.11.38"
+
+\header {
+  lsrtags = "editorial-and-educational-use"
+ texidoc = "
+Vertical lines can be drawn between staves synchronized with the notes.
+" }
+% begin verbatim
+\layout {
+ \context {
+   \Staff
+   \consists "Grid_point_engraver"
+   % sets up grids
+   gridInterval = #(ly:make-moment 1 4)
+   % this sets the grid interval to 1 quarternote (crotchet)
+ }
+}
+
+\new Score \with {
+ \consists "Grid_line_span_engraver"
+ %% by default this centers grid lines horizontally below and to the
+ % left side of the notehead, the grid lines extend from
+ % the middle lines of each staff
+}
+
+\new ChoirStaff <<
+ \new Staff {
+   \relative c'' {
+     \stemUp
+     c4. d8 e8 f g4
+   }
+ }
+ \new Staff {
+   \clef bass
+   \relative c {
+     \stemDown
+     c4  g'  f  e
+   }
+ }
+>>
diff --git a/input/lsr/grid-lines-changing-their-appearance.ly b/input/lsr/grid-lines-changing-their-appearance.ly
new file mode 100644 (file)
index 0000000..4bfc039
--- /dev/null
@@ -0,0 +1,51 @@
+%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
+%% This file is in the public domain.
+\version "2.11.38"
+
+\header {
+  lsrtags = "editorial-and-educational-use"
+ texidoc = "
+Grid lines can look differently, by modifying some of their properties
+using the @code{\\override} command.
+" }
+% begin verbatim
+\layout {
+ \context {
+   \Staff
+   \consists "Grid_point_engraver"
+   % sets up grids
+   gridInterval = #(ly:make-moment 1 4)
+   % this sets the grid interval to 1 quarternote (crotchet)
+ }
+}
+
+\new Score \with {
+ \consists "Grid_line_span_engraver"
+ \override NoteColumn #'X-offset = #-0.5
+ % this moves them to the right half a staff space
+}
+
+\new ChoirStaff <<
+ \new Staff {
+  \relative c'' {
+    \stemUp
+    c'4. d8 e8 f g4
+  }
+ }
+ \new Staff {
+   \relative c {
+     \override Score.GridLine #'extra-offset = #'( 0.0 . 1.0 )
+     % this moves them up one staff space from the default position
+     \stemDown
+     \clef bass
+     \once \override Score.GridLine #'thickness = #5.0
+      c4
+      \once \override Score.GridLine #'thickness = #1.0
+      g'
+      \once \override Score.GridLine #'thickness = #3.0
+      f
+      \once \override Score.GridLine #'thickness = #5.0
+      e
+   }
+ }
+>>
diff --git a/input/lsr/grid-lines-emphasizing-rhythms-and-notes-synchronization.ly b/input/lsr/grid-lines-emphasizing-rhythms-and-notes-synchronization.ly
new file mode 100644 (file)
index 0000000..b1c6c95
--- /dev/null
@@ -0,0 +1,72 @@
+%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
+%% This file is in the public domain.
+\version "2.11.38"
+
+\header {
+  lsrtags = "editorial-and-educational-use"
+ texidoc = "
+Regular vertical lines can be drawn between staves to show notes
+synchronization; however, in case of monophonic music, you may want to
+make the second stave invisible, and make the lines shorter like in
+this snippet.
+" }
+% begin verbatim
+%% sets of grid
+\layout {
+ \context {
+   \Staff
+   \consists "Grid_point_engraver"
+   gridInterval = #(ly:make-moment 1 8)
+%% lines length
+   \override GridPoint #'Y-extent = #'(6 . 0)
+ }
+ \context {
+   \StaffGroup
+   \remove "System_start_delimiter_engraver"
+ }
+}
+
+\layout {
+ ragged-right = ##t
+}
+\new Score
+\with {
+ \consists "Grid_line_span_engraver"
+%% centers grid lines  horizontally below noteheads
+ \override NoteColumn #'X-offset = #-0.5
+}
+
+\new ChoirStaff <<
+ \new Staff
+ {
+   \time 12/8
+   \stemUp
+   \relative {
+   c'4. d8 e8 f g4 f8 e8.[ d16 c8] }
+ }
+ \new Staff
+ {
+%% making sure the lines will be placed outside the Staff
+   \override Score.GridLine #'extra-offset = #'( 0.0 . -4.0 )
+
+%% hides staff and notes so that only the grid lines are visible
+   \override NoteHead #'transparent = ##t
+   \override NoteHead #'no-ledgers = ##t
+   \override Stem #'transparent = ##t
+   \override Beam #'transparent = ##t
+   \override Staff.BarLine #'transparent = ##t
+   \override Staff.StaffSymbol #'line-count = #0
+   \override Staff.TimeSignature #'transparent = ##t
+   \override Staff.Clef #'transparent = ##t
+
+% you have to put 'dummy' notes here to force regular grid spacing...
+ \once  \override Score.GridLine #'thickness = #4.0
+ c8   c8   c8
+ \once  \override Score.GridLine #'thickness = #3.0
+ c8   c8   c8
+ \once  \override Score.GridLine #'thickness = #4.0
+ c8   c8   c8
+ \once  \override Score.GridLine #'thickness = #3.0
+ c8   c8   c8
+ }
+>>
diff --git a/input/lsr/grid-lines;-adding-vertical-lines-between-staves.ly b/input/lsr/grid-lines;-adding-vertical-lines-between-staves.ly
deleted file mode 100644 (file)
index 2540365..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
-%% This file is in the public domain.
-\version "2.11.38"
-
-\header {
-  lsrtags = "editorial-and-educational-use"
- texidoc = "
-Vertical lines can be drawn between staves synchronized with the notes.
-" }
-% begin verbatim
-\layout {
- \context {
-   \Staff
-   \consists "Grid_point_engraver"
-   % sets up grids
-   gridInterval = #(ly:make-moment 1 4)
-   % this sets the grid interval to 1 quarternote (crotchet)
- }
-}
-
-\new Score \with {
- \consists "Grid_line_span_engraver"
- %% by default this centers grid lines horizontally below and to the
- % left side of the notehead, the grid lines extend from
- % the middle lines of each staff
-}
-
-\new ChoirStaff <<
- \new Staff {
-   \relative c'' {
-     \stemUp
-     c4. d8 e8 f g4
-   }
- }
- \new Staff {
-   \clef bass
-   \relative c {
-     \stemDown
-     c4  g'  f  e
-   }
- }
->>
diff --git a/input/lsr/grid-lines;-changing-their-appearance.ly b/input/lsr/grid-lines;-changing-their-appearance.ly
deleted file mode 100644 (file)
index 4bfc039..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
-%% This file is in the public domain.
-\version "2.11.38"
-
-\header {
-  lsrtags = "editorial-and-educational-use"
- texidoc = "
-Grid lines can look differently, by modifying some of their properties
-using the @code{\\override} command.
-" }
-% begin verbatim
-\layout {
- \context {
-   \Staff
-   \consists "Grid_point_engraver"
-   % sets up grids
-   gridInterval = #(ly:make-moment 1 4)
-   % this sets the grid interval to 1 quarternote (crotchet)
- }
-}
-
-\new Score \with {
- \consists "Grid_line_span_engraver"
- \override NoteColumn #'X-offset = #-0.5
- % this moves them to the right half a staff space
-}
-
-\new ChoirStaff <<
- \new Staff {
-  \relative c'' {
-    \stemUp
-    c'4. d8 e8 f g4
-  }
- }
- \new Staff {
-   \relative c {
-     \override Score.GridLine #'extra-offset = #'( 0.0 . 1.0 )
-     % this moves them up one staff space from the default position
-     \stemDown
-     \clef bass
-     \once \override Score.GridLine #'thickness = #5.0
-      c4
-      \once \override Score.GridLine #'thickness = #1.0
-      g'
-      \once \override Score.GridLine #'thickness = #3.0
-      f
-      \once \override Score.GridLine #'thickness = #5.0
-      e
-   }
- }
->>
diff --git a/input/lsr/grid-lines;-emphasizing-rhythms-and-notes-synchronization.ly b/input/lsr/grid-lines;-emphasizing-rhythms-and-notes-synchronization.ly
deleted file mode 100644 (file)
index b1c6c95..0000000
+++ /dev/null
@@ -1,72 +0,0 @@
-%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
-%% This file is in the public domain.
-\version "2.11.38"
-
-\header {
-  lsrtags = "editorial-and-educational-use"
- texidoc = "
-Regular vertical lines can be drawn between staves to show notes
-synchronization; however, in case of monophonic music, you may want to
-make the second stave invisible, and make the lines shorter like in
-this snippet.
-" }
-% begin verbatim
-%% sets of grid
-\layout {
- \context {
-   \Staff
-   \consists "Grid_point_engraver"
-   gridInterval = #(ly:make-moment 1 8)
-%% lines length
-   \override GridPoint #'Y-extent = #'(6 . 0)
- }
- \context {
-   \StaffGroup
-   \remove "System_start_delimiter_engraver"
- }
-}
-
-\layout {
- ragged-right = ##t
-}
-\new Score
-\with {
- \consists "Grid_line_span_engraver"
-%% centers grid lines  horizontally below noteheads
- \override NoteColumn #'X-offset = #-0.5
-}
-
-\new ChoirStaff <<
- \new Staff
- {
-   \time 12/8
-   \stemUp
-   \relative {
-   c'4. d8 e8 f g4 f8 e8.[ d16 c8] }
- }
- \new Staff
- {
-%% making sure the lines will be placed outside the Staff
-   \override Score.GridLine #'extra-offset = #'( 0.0 . -4.0 )
-
-%% hides staff and notes so that only the grid lines are visible
-   \override NoteHead #'transparent = ##t
-   \override NoteHead #'no-ledgers = ##t
-   \override Stem #'transparent = ##t
-   \override Beam #'transparent = ##t
-   \override Staff.BarLine #'transparent = ##t
-   \override Staff.StaffSymbol #'line-count = #0
-   \override Staff.TimeSignature #'transparent = ##t
-   \override Staff.Clef #'transparent = ##t
-
-% you have to put 'dummy' notes here to force regular grid spacing...
- \once  \override Score.GridLine #'thickness = #4.0
- c8   c8   c8
- \once  \override Score.GridLine #'thickness = #3.0
- c8   c8   c8
- \once  \override Score.GridLine #'thickness = #4.0
- c8   c8   c8
- \once  \override Score.GridLine #'thickness = #3.0
- c8   c8   c8
- }
->>