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