]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/controlling-tuplet-bracket-visibility.ly
lilypond-book robustness: ensure EOL at the end of @verbatim
[lilypond.git] / input / lsr / controlling-tuplet-bracket-visibility.ly
index 24deaacb54d70fabe85265b5217103a633fb9150..de374e55ecd7d8a047518433c38d55c4e08a9808 100644 (file)
@@ -1,6 +1,6 @@
 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
 %% This file is in the public domain.
-\version "2.11.38"
+\version "2.13.1"
 
 \header {
   lsrtags = "rhythms, tweaks-and-overrides"
@@ -8,27 +8,31 @@
   texidoc = "
 The default behavior of tuplet-bracket visibility is to print a bracket
 unless there is a beam of the same length as the tuplet. To control the
-visibility of tuplet brackets, set the property @code{TupletBracket
-#'bracket-visibility} to either @code{##t} (always print a bracket),
-@code{##f} (never print a bracket) or @code{#'if-no-beam} (only print a
-bracket if there is no beam). 
+visibility of tuplet brackets, set the property
+@code{'bracket-visibility} to either @code{#t} (always print a
+bracket), @code{#f} (never print a bracket) or @code{#'if-no-beam}
+(only print a bracket if there is no beam). 
 
 "
   doctitle = "Controlling tuplet bracket visibility"
 } % begin verbatim
-mus = \relative c'' {
+
+music = \relative c'' {
   \times 2/3 { c16[ d e } f8]
   \times 2/3 { c8 d e }
   \times 2/3 { c4 d e }
 }
 
-\new Voice \relative c'{
-  << \mus s4^"default" >>
-  \override TupletBracket #'bracket-visibility = #'if-no-beam
-  << \mus s4^"'if-no-beam" >>
-  \override TupletBracket #'bracket-visibility = ##t
-  << \mus s4^"#t" >>
-  \override TupletBracket #'bracket-visibility = ##f
-  << \mus s4^"#f" >>
+\new Voice {
+  \relative c' {
+    << \music s4^"default" >>
+    \override TupletBracket #'bracket-visibility = #'if-no-beam
+    << \music s4^"'if-no-beam" >>
+    \override TupletBracket #'bracket-visibility = ##t
+    << \music s4^"#t" >>
+    \override TupletBracket #'bracket-visibility = ##f
+    << \music s4^"#f" >>
+  }
 } 
 
+