]> git.donarmstrong.com Git - lilypond.git/commitdiff
Doc: NR - 3.4.2 - update eg. Score.skipTypesetting
authorJames Lowe <pkx166h@gmail.com>
Wed, 22 Jul 2015 16:22:42 +0000 (17:22 +0100)
committerJames Lowe <pkx166h@gmail.com>
Mon, 27 Jul 2015 16:51:46 +0000 (17:51 +0100)
Issue 3953

Improve example for Score.skipTypesetting
in the MIDI chapter.

Documentation/notation/input.itely

index e311de51e39fc2d4452ebb03a6c5f95e339a7e0d..2d946437fb47113c69d9f59cc44a499a2bb94bf3 100644 (file)
@@ -2599,12 +2599,13 @@ it skips all events, including tempo and instrument changes.  You have
 been warned.
 
 @lilypond[quote,ragged-right,verbatim]
-\relative {
-  c''8 d
+\relative c' {
+  c1
   \set Score.skipTypesetting = ##t
-  e8 e e e e e e e
+  \tempo 4 = 80
+  c4 c c c
   \set Score.skipTypesetting = ##f
-  c8 d b bes a g c2
+  d4 d d d
 }
 @end lilypond