]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/new/quoting-another-voice.ly
LSR: Update.
[lilypond.git] / input / new / quoting-another-voice.ly
diff --git a/input/new/quoting-another-voice.ly b/input/new/quoting-another-voice.ly
deleted file mode 100644 (file)
index 13da99e..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-\version "2.12.0"
-\header {
-  lsrtags = "staff-notation"
-  texidoc = "The @code{quotedEventTypes} property determines the
-music event types that are quoted.  The default value is
-@code{(note-event rest-event)}, which means that only notes and
-rests of the quoted voice appear in the @code{\\quoteDuring}
-expression.  In the following example, a 16th rest is not quoted
-since @code{rest-event} is not in @code{quotedEventTypes}."
-  doctitle = "Quoting another voice"
-}
-
-quoteMe = \relative c' {
-  fis4 r16 a8.-> b4\ff c
-}
-\addQuote quoteMe \quoteMe
-
-original = \relative c'' {
-  c8 d s2
-  \once \override NoteColumn #'ignore-collision = ##t
-  es8 gis8
-}
-
-<<
-  \new Staff {
-    \set Staff.instrumentName = #"quoteMe"
-    \quoteMe
-  }
-  \new Staff {
-    \set Staff.instrumentName = #"orig"
-    \original
-  }
-  \new Staff \relative c'' <<
-    \set Staff.instrumentName = #"orig+quote"
-    \set Staff.quotedEventTypes =
-      #'(note-event articulation-event)
-    \original
-    \new Voice {
-      s4
-      \set fontSize = #-4
-      \override Stem #'length-fraction = #(magstep -4)
-      \quoteDuring #"quoteMe" { \skip 2. }
-    }
-  >>
->>