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