]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/alternative-breve-note.ly
Imported Upstream version 2.16.0
[lilypond.git] / Documentation / snippets / alternative-breve-note.ly
index 65bb464c208a99dbb0ab604788e31cffb6111207..75012ba33d73b9330f71190c48821c7a4409727e 100644 (file)
@@ -1,21 +1,27 @@
-% 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.14.0
-\version "2.14.0"
+%% DO NOT EDIT this file manually; it is automatically
+%% generated from LSR http://lsr.dsi.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.16.0"
+
 \header {
-  lsrtags = "rhythms,expressive-marks"
-  texidoc = "This code demonstrates how to use the alternative breve note
-with two vertical lines on each side of the notehead instead of one line."
-  doctitle = "Alternative breve notehead with double vertical lines"
-} % begin verbatim
+  lsrtags = "expressive-marks, rhythms"
 
+  texidoc = "
+This code demonstrates how to use the alternative breve note with two
+vertical lines on each side of the notehead instead of one line.
+
+"
+  doctitle = "Alternative breve note"
+} % begin verbatim
 
 \relative c'' {
   \time 4/2
+  c\breve |
   \override Staff.NoteHead #'style = #'altdefault
-  c\breve | b\breve
+  b\breve
+  \revert Staff.NoteHead #'style
+  a\breve
 }