From 66ed6ea963ffd987e52fef67416c8fae67b11d50 Mon Sep 17 00:00:00 2001 From: Graham Percival Date: Thu, 3 May 2007 21:27:02 -0700 Subject: [PATCH] Remove unsorted file from tolsr. --- input/tolsr/clip-systems.ly | 85 ------------------------------------- 1 file changed, 85 deletions(-) delete mode 100644 input/tolsr/clip-systems.ly diff --git a/input/tolsr/clip-systems.ly b/input/tolsr/clip-systems.ly deleted file mode 100644 index 06247e76b5..0000000000 --- a/input/tolsr/clip-systems.ly +++ /dev/null @@ -1,85 +0,0 @@ -\header { - texidoc = "Clipping snippets from a finished score - -Notes: - -@itemize @bullet -@item If system starts and ends are included, they include extents of the System grob, eg. instrument names. -@item Grace notes at the end point of the region are not included -@item Regions can span multiple systems. In this case, multiple EPS files are generated. -@end itemize - -This file needs to be run separately with @code{-dclip-systems}; the -collated-files.html of the regression test does not adequately show -the results. - -The result will be files named -@file{@var{base}-from-@var{start}-to-@var{end}[-@var{count}].eps}. -" - -} - -\version "2.10.0" - -#(ly:set-option 'clip-systems) - -#(set! output-count 1) - -origScore = \score{ - \relative { - \set Staff.instrumentName = #"bla" - c1 - d - \grace c16 - e1 - \key d\major - - f - \break \clef bass - g, - fis - } -} - -\book { - \score { - \origScore - \layout { - - %% each clip-region is a (START . END) pair - %% where both are rhythmic-locations. - - %% (make-rhythmic-locations BAR-NUMBER NUM DEN) - %% means NUM/DEN whole-notes into bar numbered BAR-NUMBER - - clip-regions - = #(list - (cons - (make-rhythmic-location 2 0 1) - (make-rhythmic-location 4 0 1)) - - (cons - (make-rhythmic-location 0 0 1) - (make-rhythmic-location 4 0 1)) - - (cons - (make-rhythmic-location 0 0 1) - (make-rhythmic-location 6 0 1)) - ) - } - } -} - -#(set! output-count 0) -#(ly:set-option 'clip-systems #f) - -\book { - \score { \origScore } - \markup { \bold \fontsize #6 clips } - \score { - \lyrics { - \markup { from-2.0.1-to-4.0.1-clip.eps } - \markup { \epsfile #X #30.0 #(format #f "~a-1-from-2.0.1-to-4.0.1-clip.eps" (ly:parser-output-name parser)) } - } - } -} -- 2.39.5