X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Falternative-breve-note.ly;fp=Documentation%2Fsnippets%2Falternative-breve-note.ly;h=75012ba33d73b9330f71190c48821c7a4409727e;hb=32a34dcef0c0041c6d62677487a380b5c8b85712;hp=65bb464c208a99dbb0ab604788e31cffb6111207;hpb=f41973ff763d5972a85995b6d40c864281ec6714;p=lilypond.git diff --git a/Documentation/snippets/alternative-breve-note.ly b/Documentation/snippets/alternative-breve-note.ly index 65bb464c20..75012ba33d 100644 --- a/Documentation/snippets/alternative-breve-note.ly +++ b/Documentation/snippets/alternative-breve-note.ly @@ -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 }