]> git.donarmstrong.com Git - lilypond.git/blob - 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
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.14.0"
8
9 \header {
10   lsrtags = "pitches, editorial-annotations"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
13   doctitlees = "Aplicar estilos de cabeza según la nota de la escala"
14   texidoces = "
15 La propiedad @code{shapeNoteStyles} se puede usar para definir varios
16 estilos de cabezas de nota para cada grado de la escala (según esté
17 establecido por la armadura o por la propiedad @code{tonic}).  Esta
18 propiedad requiere un conjunto de símbolos, que pueden ser puramente
19 arbitrarios (se permiten expresiones geométricas como @code{triangle},
20 triángulo, @code{cross}, aspas, y @code{xcircle}, círculo con aspas) o
21 basados en una antigua tradición americana de grabado (ciertos nombres
22 de nota latinos trambién se permiten).
23
24 Dicho esto, para imitar antiguos cancioneros americanos, existen varios
25 estilos predefinidos de cabezas de nota disponibles a través de
26 instrucciones de abreviatura como @code{\\aikenHeads} o
27 @code{\\sacredHarpHeads}.
28
29 Este ejemplo muestra distintas formas de obtener cabezas de notas con forma,
30 y muestra la capacidad de transportar una melodía sin perder la
31 correspondencia entre las funciones armónicas y los estilos de cabezas de
32 nota.
33
34 "
35
36
37 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
38   doctitlede = "Notenkopfstile basierend auf der Tonleiterstufe erstellen"
39   texidocde = "
40 Die @code{shapeNoteStyles}-(NotenFormenStile)-Eigenschaft kann benutzt
41 werden, um verschiedene Notenstile für jeden Schritt der Tonleiter
42 zu definieren (vorgegeben von der Tonart oder der @qq{tonic}
43 (Tonika)-Eigenschaft.  Diese Eigenschaft braucht eine Anzahl von Symbolen,
44 welche beliebig sein können (geometrische Ausdrücke wie @code{triangle}
45 (Dreieck), @code{cross} (Kreuz) und @code{xcircle} (X-Kreis) sind erlaubt)
46 oder basierend auf einer alten amerikanischen Notensatztradition (einige
47 lateinische Notenbezeichnungen sind auch erlaubt).
48
49 Um alte amerikanische Liederbücher zu imitieren, gibt es einige
50 vordefinierte Notenstile wie etwa @code{\\aikenHeads} (im Stil von Aiken)
51 oder @code{\\sacredHarpHeads} (im Stil der Sacred Harp-Tradition).
52
53 Dieses Beispiel zeigt, wie man unterschiedlich geformte Noten erhält und
54 eine Melodie transponieren kann, ohne dass das Verhältnis zwischen den
55 harmonischen Funktionen und dem Notenstil verloren geht.
56
57 "
58
59 %% Translation of GIT committish: 4ab2514496ac3d88a9f3121a76f890c97cedcf4e
60   texidocfr = "
61 La propriété @code{shapeNoteStyles} permet d'affecter un profil
62 particulier à chaque degré de la gamme -- à partir de l'armure ou
63 de la propriété @code{tonic}.  Ses valeurs sont constituées d'une liste
64 de symboles, qu'il s'agisse de formes géométriques (@code{triangle},
65 @code{cross}, ou @code{xcircle}) ou basés sur la tradition des graveurs
66 américains (avec quelques noms de note latins).
67
68 LilyPond dispose de deux raccourcis, @code{\\aikenHeads} et
69 @code{\\sacredHarpHeads}, permettant de reproduire déanciens recueils de
70 chansons américaines.
71
72 L'exemple suivant montre plusieurs manières de profiler les têtes de
73 note, ainsi que la capacité de trnsposer tout en respectant la fonction
74 harmonique de chaque note dans la gamme.
75
76 "
77   doctitlefr = "Profilage des notes selon leur degré dans la gamme"
78
79
80   texidoc = "
81 The @code{shapeNoteStyles} property can be used to define various note
82 head styles for each step of the scale (as set by the key signature or
83 the @code{tonic} property). This property requires a set of symbols,
84 which can be purely arbitrary (geometrical expressions such as
85 @code{triangle}, @code{cross}, and @code{xcircle} are allowed) or based
86 on old American engraving tradition (some latin note names are also
87 allowed).
88
89 That said, to imitate old American song books, there are several
90 predefined note head styles available through shortcut commands such as
91 @code{\\aikenHeads} or @code{\\sacredHarpHeads}.
92
93 This example shows different ways to obtain shape note heads, and
94 demonstrates the ability to transpose a melody without losing the
95 correspondence between harmonic functions and note head styles.
96
97 "
98   doctitle = "Applying note head styles depending on the step of the scale"
99 } % begin verbatim
100
101 fragment = {
102   \key c \major
103   c2 d
104   e2 f
105   g2 a
106   b2 c
107 }
108
109 \new Staff {
110   \transpose c d
111   \relative c' {
112     \set shapeNoteStyles = #'#(do re mi fa
113                                #f la ti)
114     \fragment
115   }
116
117   \break
118
119   \relative c' {
120     \set shapeNoteStyles = #'#(cross triangle fa #f
121                                mensural xcircle diamond)
122     \fragment
123   }
124 }
125