]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/alternative-breve-note.ly
Update to LSR using only local files
[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 %% Translation of GIT committish: 8cbb38db1591ab95a178643e7bf41db018aa22c0
11
12
13   texidocde = "Dieses Schnipsel zeigt, wie man die alternative Brevis mit zwei
14 vertikalen Linien an jeder Seite des Notenkopfes benutzt."
15   doctitlede = "Alternative Brevis mit zwei vertiaklen Linien"
16
17
18 %% Translation of GIT committish: d9d1da30361a0bcaea1ae058eb1bc8dd3a5b2e4c
19   texidocfr = "Voici comment obtenir une brève -- aussi appelée note carée --
20 flanquée de deux barres verticales, au lieu d'une comme habituellement."
21
22   doctitlefr = "Brève alternative avec deux barres verticales"
23
24   lsrtags = "rhythms,expressive-marks"
25   texidoc = "This code demonstrates how to use the alternative breve note
26 with two vertical lines on each side of the notehead instead of one line."
27   doctitle = "Alternative breve notehead with double vertical lines"
28 } % begin verbatim
29
30
31 \relative c'' {
32   \time 4/2
33   \override Staff.NoteHead #'style = #'altdefault
34   c\breve | b\breve
35 }