]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/applying-note-head-styles-depending-on-the-step-of-the-scale.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / Documentation / snippets / applying-note-head-styles-depending-on-the-step-of-the-scale.ly
index 986b9ffd477c7268b27e657276e4947233d7d9fa..b69395ac074953e2e14174156b7b34a93332fc13 100644 (file)
@@ -1,16 +1,20 @@
-%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
+%% 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.13.1"
+\version "2.14.0"
 
 \header {
   lsrtags = "pitches, editorial-annotations"
 
-%% Translation of GIT committish: 48f804da6794a7bc8e7fdd4b1649f485b0b09d26
+%% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
   doctitlees = "Aplicar estilos de cabeza según la nota de la escala"
   texidoces = "
 La propiedad @code{shapeNoteStyles} se puede usar para definir varios
 estilos de cabezas de nota para cada grado de la escala (según esté
-establecido por la armadura o por la propiedad \"tonic\").  Esta
+establecido por la armadura o por la propiedad @code{tonic}).  Esta
 propiedad requiere un conjunto de símbolos, que pueden ser puramente
 arbitrarios (se permiten expresiones geométricas como @code{triangle},
 triángulo, @code{cross}, aspas, y @code{xcircle}, círculo con aspas) o
@@ -29,13 +33,14 @@ nota.
 
 "
 
-%% Translation of GIT committish: e75f1604a1b866c853dee42dbffcb7800c706a5f
-  doctitlede = "Notenkopfstile besierend auf der Tonleiterstufe erstellen"
+
+%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
+  doctitlede = "Notenkopfstile basierend auf der Tonleiterstufe erstellen"
   texidocde = "
 Die @code{shapeNoteStyles}-(NotenFormenStile)-Eigenschaft kann benutzt
 werden, um verschiedene Notenstile für jeden Schritt der Tonleiter
-zudefinieren (vorgegeben von der Tonart oder der @q{tonic}
-(Tonika)-Eigneschaft.  Diese Eigenschaft braucht eine Anzahl von Symbolen,
+zu definieren (vorgegeben von der Tonart oder der @qq{tonic}
+(Tonika)-Eigenschaft.  Diese Eigenschaft braucht eine Anzahl von Symbolen,
 welche beliebig sein können (geometrische Ausdrücke wie @code{triangle}
 (Dreieck), @code{cross} (Kreuz) und @code{xcircle} (X-Kreis) sind erlaubt)
 oder basierend auf einer alten amerikanischen Notensatztradition (einige
@@ -51,11 +56,32 @@ harmonischen Funktionen und dem Notenstil verloren geht.
 
 "
 
+%% Translation of GIT committish: 4ab2514496ac3d88a9f3121a76f890c97cedcf4e
+  texidocfr = "
+La propriété @code{shapeNoteStyles} permet d'affecter un profil
+particulier à chaque degré de la gamme -- à partir de l'armure ou
+de la propriété @code{tonic}.  Ses valeurs sont constituées d'une liste
+de symboles, qu'il s'agisse de formes géométriques (@code{triangle},
+@code{cross}, ou @code{xcircle}) ou basés sur la tradition des graveurs
+américains (avec quelques noms de note latins).
+
+LilyPond dispose de deux raccourcis, @code{\\aikenHeads} et
+@code{\\sacredHarpHeads}, permettant de reproduire déanciens recueils de
+chansons américaines.
+
+L'exemple suivant montre plusieurs manières de profiler les têtes de
+note, ainsi que la capacité de trnsposer tout en respectant la fonction
+harmonique de chaque note dans la gamme.
+
+"
+  doctitlefr = "Profilage des notes selon leur degré dans la gamme"
+
+
   texidoc = "
 The @code{shapeNoteStyles} property can be used to define various note
 head styles for each step of the scale (as set by the key signature or
-the \"tonic\" property). This property requires a set of symbols, which
-can be purely arbitrary (geometrical expressions such as
+the @code{tonic} property). This property requires a set of symbols,
+which can be purely arbitrary (geometrical expressions such as
 @code{triangle}, @code{cross}, and @code{xcircle} are allowed) or based
 on old American engraving tradition (some latin note names are also
 allowed).
@@ -66,7 +92,7 @@ predefined note head styles available through shortcut commands such as
 
 This example shows different ways to obtain shape note heads, and
 demonstrates the ability to transpose a melody without losing the
-correspondence between harmonic functions and note head styles. 
+correspondence between harmonic functions and note head styles.
 
 "
   doctitle = "Applying note head styles depending on the step of the scale"
@@ -80,23 +106,20 @@ fragment = {
   b2 c
 }
 
-\score {
-  \new Staff {
-    \transpose c d 
-    \relative c' {
-      \set shapeNoteStyles = #'#(do re mi fa
-                                 #f la ti)
-      \fragment
-    }
-
-    \break
-
-    \relative c' {
-      \set shapeNoteStyles = #'#(cross triangle fa #f
-                                 mensural xcircle diamond)
-      \fragment
-    }
+\new Staff {
+  \transpose c d
+  \relative c' {
+    \set shapeNoteStyles = #'#(do re mi fa
+                               #f la ti)
+    \fragment
+  }
+
+  \break
+
+  \relative c' {
+    \set shapeNoteStyles = #'#(cross triangle fa #f
+                               mensural xcircle diamond)
+    \fragment
   }
-  \layout { ragged-right = ##t }
 }