]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/applying-note-head-styles-depending-on-the-step-of-the-scale.ly
Fix 1130.
[lilypond.git] / Documentation / snippets / applying-note-head-styles-depending-on-the-step-of-the-scale.ly
index 3a60cec50e51d0efbf8f48c084e87a18b5fb8f75..faa5ebc0cf4f68e4a64eb90e4b8af0163b93e66f 100644 (file)
@@ -1,16 +1,17 @@
-%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
+%% Do not edit this file; it is automatically
+%% generated from LSR http://lsr.dsi.unimi.it
 %% This file is in the public domain.
-\version "2.13.1"
+\version "2.13.20"
 
 \header {
   lsrtags = "pitches, editorial-annotations"
 
-%% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
+%% Translation of GIT committish: e0aa246e0ed1a86dc41a99ab79bff822d3320aa7
   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,7 +30,8 @@ nota.
 
 "
 
-%% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
+
+%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
   doctitlede = "Notenkopfstile basierend auf der Tonleiterstufe erstellen"
   texidocde = "
 Die @code{shapeNoteStyles}-(NotenFormenStile)-Eigenschaft kann benutzt
@@ -51,11 +53,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 +89,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 +103,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 }
 }