]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/alternative-breve-note.ly
65bb464c208a99dbb0ab604788e31cffb6111207
[lilypond.git] / Documentation / snippets / alternative-breve-note.ly
1 % DO NOT EDIT this file manually; it is automatically
2 % generated from Documentation/snippets/new
3 % Make any changes in Documentation/snippets/new/
4 % and then run scripts/auxiliar/makelsr.py
5 %
6 % This file is in the public domain.
7 %% Note: this file works from version 2.14.0
8 \version "2.14.0"
9 \header {
10   lsrtags = "rhythms,expressive-marks"
11   texidoc = "This code demonstrates how to use the alternative breve note
12 with two vertical lines on each side of the notehead instead of one line."
13   doctitle = "Alternative breve notehead with double vertical lines"
14 } % begin verbatim
15
16
17 \relative c'' {
18   \time 4/2
19   \override Staff.NoteHead #'style = #'altdefault
20   c\breve | b\breve
21 }