]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/alternative-breve-note.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / alternative-breve-note.ly
index 7b90b4982a8e0a2e6be60362b4aa34fbc0cc0b27..75012ba33d73b9330f71190c48821c7a4409727e 100644 (file)
@@ -1,45 +1,27 @@
-% 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"
-\header {
-%% Translation of GIT committish: ea0b270e14781707ab52683acddf9302bbe337f3
-  texidoces = "
-Este código muestra cómo usar la forma alternativa de la breve con dos
-líneas verticales a los lados de la cabeza, en lugar de una sola
-línea.
-
-"
-  doctitlees = "Cabeza de breve alternativa con dobles líneas verticales"
-%% Translation of GIT committish: 8cbb38db1591ab95a178643e7bf41db018aa22c0
-
-
-  texidocde = "Dieses Schnipsel zeigt, wie man die alternative Brevis mit zwei
-vertikalen Linien an jeder Seite des Notenkopfes benutzt."
-  doctitlede = "Alternative Brevis mit zwei vertiaklen Linien"
+%% 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.16.0"
 
+\header {
+  lsrtags = "expressive-marks, rhythms"
 
-%% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
-  texidocfr = "
-Voici comment obtenir une brève -- aussi appelée note carée --
-flanquée de deux barres verticales, au lieu d'une comme habituellement.
+  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.
 
 "
-  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"
+  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
 }