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