]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/time-signature-in-parentheses.ly
Imported Upstream version 2.16.0
[lilypond.git] / Documentation / snippets / time-signature-in-parentheses.ly
index 4e8d3a34de8af543f5919c74acaf7ed8603121ed..6d792fb6c15de875f13c628d34401e8898f6cb0a 100644 (file)
@@ -4,10 +4,10 @@
 %% and then run scripts/auxiliar/makelsr.py
 %%
 %% This file is in the public domain.
-\version "2.14.0"
+\version "2.16.0"
 
 \header {
-  lsrtags = "staff-notation, tweaks-and-overrides"
+  lsrtags = "specific-notation, staff-notation, tweaks-and-overrides"
 
   texidoc = "
 The time signature can be enclosed within parentheses.
@@ -16,10 +16,10 @@ The time signature can be enclosed within parentheses.
   doctitle = "Time signature in parentheses"
 } % begin verbatim
 
+
 \relative c'' {
   \override Staff.TimeSignature #'stencil = #(lambda (grob)
     (bracketify-stencil (ly:time-signature::print grob) Y 0.1 0.2 0.1))
   \time 2/4
   a4 b8 c
 }
-