]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/new/alternative-breve-note.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / Documentation / snippets / new / alternative-breve-note.ly
1 \version "2.14.0"
2 \header {
3   lsrtags = "rhythms,expressive-marks"
4   texidoc = "This code demonstrates how to use the alternative breve note
5 with two vertical lines on each side of the notehead instead of one line."
6   doctitle = "Alternative breve notehead with double vertical lines"
7 }
8
9 \relative c'' {
10   \time 4/2
11   \override Staff.NoteHead #'style = #'altdefault
12   c\breve | b\breve
13 }