]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/alternative-breve-note.ly
resolve merge
[lilypond.git] / Documentation / snippets / alternative-breve-note.ly
diff --git a/Documentation/snippets/alternative-breve-note.ly b/Documentation/snippets/alternative-breve-note.ly
new file mode 100644 (file)
index 0000000..65bb464
--- /dev/null
@@ -0,0 +1,21 @@
+% 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"
+\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
+
+
+\relative c'' {
+  \time 4/2
+  \override Staff.NoteHead #'style = #'altdefault
+  c\breve | b\breve
+}