]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/controlling-tuplet-bracket-visibility.ly
Imported Upstream version 2.19.45
[lilypond.git] / Documentation / snippets / controlling-tuplet-bracket-visibility.ly
index 9c74de6b453cd25db13f1ef9ac3bfa42f30e5cdf..37def3322493465f7c1c66a5b6a88c0fd88d3309 100644 (file)
@@ -1,10 +1,10 @@
 %% DO NOT EDIT this file manually; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
+%% 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.17.11"
+\version "2.18.0"
 
 \header {
   lsrtags = "rhythms, tweaks-and-overrides"
@@ -21,7 +21,6 @@ bracket), @code{#f} (never print a bracket) or @code{#'if-no-beam}
   doctitle = "Controlling tuplet bracket visibility"
 } % begin verbatim
 
-
 music = \relative c'' {
   \tuplet 3/2 { c16[ d e } f8]
   \tuplet 3/2 { c8 d e }
@@ -37,5 +36,8 @@ music = \relative c'' {
     << \music s4^"#t" >>
     \override TupletBracket.bracket-visibility = ##f
     << \music s4^"#f" >>
+    %% v2.18 :
+    \omit TupletBracket
+    << \music s4^"omit" >>
   }
 }