]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/alternative-breve-note.ly
Merge branch 'master' into lilypond/translation
[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: 8ce3514638c8b32b917b5b10ec5350d400249072
11   texidoces = "
12 Este código muestra cómo usar la forma alternativa de la breve con dos
13 líneas verticales a los lados de la cabeza, en lugar de una sola
14 línea.
15
16 "
17   doctitlees = "Cabeza de breve alternativa con dobles líneas verticales"
18 %% Translation of GIT committish: 8cbb38db1591ab95a178643e7bf41db018aa22c0
19
20
21   texidocde = "Dieses Schnipsel zeigt, wie man die alternative Brevis mit zwei
22 vertikalen Linien an jeder Seite des Notenkopfes benutzt."
23   doctitlede = "Alternative Brevis mit zwei vertiaklen Linien"
24
25
26 %% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
27   texidocfr = "
28 Voici comment obtenir une brève -- aussi appelée note carée --
29 flanquée de deux barres verticales, au lieu d'une comme habituellement.
30
31 "
32   doctitlefr = "Brève alternative avec deux barres verticales"
33
34   lsrtags = "rhythms,expressive-marks"
35   texidoc = "This code demonstrates how to use the alternative breve note
36 with two vertical lines on each side of the notehead instead of one line."
37   doctitle = "Alternative breve notehead with double vertical lines"
38 } % begin verbatim
39
40
41 \relative c'' {
42   \time 4/2
43   \override Staff.NoteHead #'style = #'altdefault
44   c\breve | b\breve
45 }