]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/alternative-breve-note.ly
Fix white space
[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 \version "2.14.0"
8 \header {
9
10   texidocde = "Dieses Schnipsel zeigt, wie man die alternative Brevis mit zwei
11 vertikalen Linien an jeder Seite des Notenkopfes benutzt."
12   doctitlede = "Alternative Brevis mit zwei vertiaklen Linien"
13
14
15   lsrtags = "rhythms,expressive-marks"
16   texidoc = "This code demonstrates how to use the alternative breve note
17 with two vertical lines on each side of the notehead instead of one line."
18   doctitle = "Alternative breve notehead with double vertical lines"
19 } % begin verbatim
20
21
22 \relative c'' {
23   \time 4/2
24   \override Staff.NoteHead #'style = #'altdefault
25   c\breve | b\breve
26 }