]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/engravers-one-by-one.ly
Merge remote-tracking branch 'origin/translation' into staging
[lilypond.git] / Documentation / snippets / engravers-one-by-one.ly
index 22f388423e2e65a1673beb5f395af764a102706a..68cadaf2230f1ae4a6520c76212d466fe847df42 100644 (file)
@@ -1,39 +1,13 @@
-%% Do not edit this file; it is automatically
+%% DO NOT EDIT this file manually; it is automatically
 %% generated from LSR http://lsr.dsi.unimi.it
 %% 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.
 %% This file is in the public domain.
-\version "2.12.2"
+\version "2.19.7"
 
 \header {
 
 \header {
-  lsrtags = "contexts-and-engravers"
-
-%% Translation of GIT committish: fa19277d20f8ab0397c560eb0e7b814bd804ecec
-  texidoces = "
-Del problema central de la notación, esto es, crear un determinado
-símbolo, se encargan los «plugins» o complementos añadidos.  Cada
-uno de los complementos se conoce como un grabador. En este
-ejemplo, los grabadores se van activando uno por uno, en el orden
-siguiente:
-
-- cabeza de las notas,
-
-- el símbolo del pentagrama,
-
-- clave,
-
-- plicas,
-
-- barras, ligaduras de expresión, acentos,
-
-- alteraciones, líneas divisorias, indicación del compás, y armadura.
-
-Los grabadores se encuentran agrupados. Por ejemplo, las cabezas de
-nota, ligaduras de expresión, barras de corchea, etc. forman un
-contexto de voz, @code{Voice}. Los grabadores de la armadura,
-alteraciones, líneas de compás, etc. forman un contexto de pentagrama,
-@code{Staff}.
-
-"
-  doctitlees = "Los grabadores uno por uno"
+  lsrtags = "contexts-and-engravers, specific-notation"
 
   texidoc = "
 The notation problem, creating a certain symbol, is handled by plugins.
 
   texidoc = "
 The notation problem, creating a certain symbol, is handled by plugins.
@@ -135,7 +109,7 @@ MyStaff = \context {
 
   \consists "Pitch_squash_engraver"
 
 
   \consists "Pitch_squash_engraver"
 
-  localKeySignature = #'()
+  localAlterations = #'()
 
   % explicitly set instrumentName, so we don't get
   % weird effects when doing instrument names for
 
   % explicitly set instrumentName, so we don't get
   % weird effects when doing instrument names for
@@ -145,6 +119,7 @@ MyStaff = \context {
   shortInstrumentName = #'()
 
   \accepts "Voice"
   shortInstrumentName = #'()
 
   \accepts "Voice"
+  \defaultchild "Voice"
 }
 
 
 }
 
 
@@ -160,7 +135,7 @@ MyVoice = \context {
     You have to instantiate this explicitly if you want to have
     multiple voices on the same staff."
 
     You have to instantiate this explicitly if you want to have
     multiple voices on the same staff."
 
-  localKeySignature = #'()
+  localAlterations = #'()
   \consists "Font_size_engraver"
 
   % must come before all
   \consists "Font_size_engraver"
 
   % must come before all
@@ -185,6 +160,7 @@ MyVoice = \context {
   %}
   \consists "Text_engraver"
   \consists "Dynamic_engraver"
   %}
   \consists "Text_engraver"
   \consists "Dynamic_engraver"
+  \consists "Dynamic_align_engraver"
   \consists "Fingering_engraver"
 
   \consists "Script_column_engraver"
   \consists "Fingering_engraver"
 
   \consists "Script_column_engraver"
@@ -302,4 +278,3 @@ MyStaff = \context {
     \context { \MyVoice }
   }
 }
     \context { \MyVoice }
   }
 }
-