]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/controlling-tuplet-bracket-visibility.ly
Merge master into nested-bookparts
[lilypond.git] / input / lsr / controlling-tuplet-bracket-visibility.ly
index 639bc03c946d69b187d7d86cf68cb86d02907329..ad445f6ef9c6376f4452bde5c70a9db627173d0c 100644 (file)
@@ -1,26 +1,30 @@
 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
 %% This file is in the public domain.
-%% Tags: rhythms, tweaks-and-overrides
-\version "2.11.35"
+\version "2.11.62"
 
-\header { texidoc = "
-Default behaviour of tuplet-bracket visibility is to print a bracket
+\header {
+  lsrtags = "rhythms, tweaks-and-overrides"
+
+  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, you can set the property TupletBracket
-#'bracket-visibility to either ##t (always print a bracket), ##f (never
-print a bracket) or #'if-no-beam (only print a bracket if there is no
-beam).
-" }
-% begin verbatim
+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). 
+
+"
+  doctitle = "Controlling tuplet bracket visibility"
+} % begin verbatim
 mus = \relative c'' {
-  \times 2/3 {c16 [ d e } f8]
-  \times 2/3 {c8 d e }
+  \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
+  \override TupletBracket #'bracket-visibility = #'if-no-beam
   << \mus s4^"'if-no-beam" >>
   \override TupletBracket #'bracket-visibility = ##t
   << \mus s4^"#t" >>