]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/alternative-breve-note.ly
c15623739c3e4f06a7c137448aa038ff5c38771b
[lilypond.git] / Documentation / snippets / alternative-breve-note.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or 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.2"
8
9 \header {
10   lsrtags = "expressive-marks, rhythms"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
13   texidoces = "
14 Este código muestra cómo usar la forma alternativa de la breve o
15 cuadrada con dos líneas verticales a los lados de la cabeza, en lugar
16 de una sola línea.
17
18 "
19   doctitlees = "Cabeza de breve (cuadrada) alternativa"
20 %% Translation of GIT committish: 8cbb38db1591ab95a178643e7bf41db018aa22c0
21
22
23   texidocde = "Dieses Schnipsel zeigt, wie man die alternative Brevis mit zwei
24 vertikalen Linien an jeder Seite des Notenkopfes benutzt."
25   doctitlede = "Alternative Brevis mit zwei vertiaklen Linien"
26
27
28 %% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
29   texidocfr = "
30 Voici comment obtenir une brève -- aussi appelée note carée --
31 flanquée de deux barres verticales, au lieu d'une comme habituellement.
32
33 "
34   doctitlefr = "Brève alternative avec deux barres verticales"
35
36   texidoc = "
37 This code demonstrates how to use the alternative breve note with two
38 vertical lines on each side of the notehead instead of one line.
39
40 "
41   doctitle = "Alternative breve note"
42 } % begin verbatim
43
44 \relative c'' {
45   \time 4/2
46   c\breve |
47   \override Staff.NoteHead #'style = #'altdefault
48   b\breve
49   \revert Staff.NoteHead #'style
50   a\breve
51 }