]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/adding-timing-marks-to-long-glissandi.ly
Add '-dcrop' option to ps and svg backends
[lilypond.git] / Documentation / snippets / adding-timing-marks-to-long-glissandi.ly
index e5fe73a322a4098c76c703154acb11acaae5d933..3b4472e9bdde076af22800139dd74bf283340a87 100644 (file)
@@ -1,37 +1,35 @@
-% DO NOT EDIT this file manually; it is automatically
-% generated from Documentation/snippets/new
-% Make any changes in Documentation/snippets/new/
-% and then run scripts/auxiliar/makelsr.py
-%
-% This file is in the public domain.
-%% Note: this file works from version 2.16.0
-\version "2.17.6"
+%% DO NOT EDIT this file manually; it is automatically
+%% generated from LSR http://lsr.di.unimi.it
+%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
+%% and then run scripts/auxiliar/makelsr.py
+%%
+%% This file is in the public domain.
+\version "2.18.0"
 
 \header {
   lsrtags = "expressive-marks, staff-notation, tweaks-and-overrides"
 
   texidoc = "
-Skipped beats in very long glissandi are sometimes indicated by
-timing marks, often consisting of stems without noteheads.  Such
-stems can also be used to carry intermediate expression markings.
+Skipped beats in very long glissandi are sometimes indicated by timing
+marks, often consisting of stems without noteheads.  Such stems can
+also be used to carry intermediate expression markings.
 
-If the stems do not align well with the glissando, they may need to
-be repositioned slightly.
-"
+If the stems do not align well with the glissando, they may need to be
+repositioned slightly.
 
+"
   doctitle = "Adding timing marks to long glissandi"
 } % begin verbatim
 
-
 glissandoSkipOn = {
   \override NoteColumn.glissando-skip = ##t
-  \override NoteHead.transparent = ##t
+  \hide NoteHead
   \override NoteHead.no-ledgers = ##t
 }
 
 glissandoSkipOff = {
   \revert NoteColumn.glissando-skip
-  \revert NoteHead.transparent
+  \undo \hide NoteHead
   \revert NoteHead.no-ledgers
 }