]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/alternative-breve-note.ly
Doc: run makelsr locally
[lilypond.git] / Documentation / snippets / alternative-breve-note.ly
index 96ce5499d9f5551604739b47bce5042477fb6d59..40c0a949e55301c74f83374271116404f3acefdf 100644 (file)
@@ -1,12 +1,22 @@
-% DO NOT EDIT this file manually; it is automatically
-% generated from Documentation/snippets/new
-% Make any changes in Documentation/snippets/new/
-% and then run scripts/auxiliar/makelsr.py
-%
-% This file is in the public domain.
-%% Note: this file works from version 2.14.0
-\version "2.14.0"
+%% DO NOT EDIT this file manually; it is automatically
+%% generated from LSR http://lsr.dsi.unimi.it
+%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
+%% and then run scripts/auxiliar/makelsr.py
+%%
+%% This file is in the public domain.
+\version "2.14.2"
+
 \header {
+  lsrtags = "rhythms, expressive-marks"
+
+%% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
+  texidoces = "
+Este código muestra cómo usar la forma alternativa de la breve o
+cuadrada con dos líneas verticales a los lados de la cabeza, en lugar
+de una sola línea.
+
+"
+  doctitlees = "Cabeza de breve (cuadrada) alternativa"
 %% Translation of GIT committish: 8cbb38db1591ab95a178643e7bf41db018aa22c0
 
 
@@ -23,15 +33,19 @@ flanquée de deux barres verticales, au lieu d'une comme habituellement.
 "
   doctitlefr = "Brève alternative avec deux barres verticales"
 
-  lsrtags = "rhythms,expressive-marks"
-  texidoc = "This code demonstrates how to use the alternative breve note
-with two vertical lines on each side of the notehead instead of one line."
-  doctitle = "Alternative breve notehead with double vertical lines"
-} % begin verbatim
+  texidoc = "
+This code demonstrates how to use the alternative breve note with two
+vertical lines on each side of the notehead instead of one line.
 
+"
+  doctitle = "Alternative breve note"
+} % begin verbatim
 
 \relative c'' {
   \time 4/2
+  c\breve |
   \override Staff.NoteHead #'style = #'altdefault
-  c\breve | b\breve
+  b\breve
+  \revert Staff.NoteHead #'style
+  a\breve
 }