]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/applying-note-head-styles-depending-on-the-step-of-the-scale.ly
Merge branch 'master' into lilypond/translation
[lilypond.git] / input / lsr / applying-note-head-styles-depending-on-the-step-of-the-scale.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.62"
4
5 \header {
6   lsrtags = "pitches, editorial-annotations"
7
8   doctitle = "Applying note head styles depending on the step of the scale"
9   doctitlees = "Aplicar estilos de cabeza según la nota de la escala"
10   texidoces = "
11 La propiedad @code{shapeNoteStyles} se puede usar para definir varios
12 estilos de cabezas de nota para cada grado de la escala (según esté
13 establecido por la armadura o por la propiedad \"tonic\"). Esta
14 propiedad requiere un conjunto de símbolos, que pueden ser puramente
15 arbitrarios (se permiten expresiones geométricas como @code{triangle},
16 triángulo, @code{cross}, aspas, y @code{xcircle}, círculo con aspas) o
17 basados en una antigua tradición americana de grabado (ciertos nombres
18 de nota latinos trambién se permiten).
19
20 Dicho esto, para imitar antiguos cancioneros americanos, existen
21 varios estilos predefinidos de cabezas de nota disponibles a través de
22 instrucciones de abreviatura como @code{\\aikenHeads} o
23 @code{\\sacredHarpHeads}.
24
25 Este ejemplo muestra distintas formas de obtener cabezas de notas con
26 forma, y muestra la capacidad de transportar una melodía sin perder la
27 correspondencia entre las funciones armónicas y los estilos de cabezas
28 de nota.
29
30 "
31
32 texidocde = "
33 Die @code{shapeNoteStyles}-(NotenFormenStile)-Eigenschaft kann benutzt
34 werden, um verschiedene Notenstile für jeden Schritt der Tonleiter
35 zudefinieren (vorgegeben von der Tonart oder der \"tonic\" (Tonika)-Eigneschaft.
36 Diese Eigenschaft braucht eine Anzahl von Symbolen, welche vollständig
37 arbiträr sein können (geometrische Ausdrücke wie
38 @code{triangle} (Dreieck), @code{cross} (Kreuz) und @code{xcircle} (X-Kreis)
39 sind erlaubt) oder basierend auf einer alten amerikanischen Notensatztradition
40 (einige lateinische Notenbezeichnungen sind auch erlaubt).
41
42 Um alte amerikanische Liederbücher zu imitieren, gibt es einige vordefinierte
43 Notenstile wie etwa
44 @code{\\aikenHeads} (im Stil von Aiken) oder @code{\\sacredHarpHeads} (im
45 Stil der Sacred Harp-Tradition).
46
47 Dieses Beispiel zeigt andere Wege, um die unterschiedliche geformten
48 Noten zu erhalten, und zeigt, wie man eine Melodie transponieren kann,
49 ohne dass das Verhältnis zwischen den harmonischen Funktionen und
50 dem Notenstil verloren geht.
51
52 "
53
54   doctitlede = "Notenkopfstile besierend auf der Tonleiterstufe erstellen"
55
56   texidoc = "
57 The @code{shapeNoteStyles} property can be used to define various note
58 head styles for each step of the scale (as set by the key signature or
59 the \"tonic\" property). This property requires a set of symbols, which
60 can be purely arbitrary (geometrical expressions such as
61 @code{triangle}, @code{cross}, and @code{xcircle} are allowed) or based
62 on old American engraving tradition (some latin note names are also
63 allowed).
64
65 That said, to imitate old American song books, there are several
66 predefined note head styles available through shortcut commands such as
67 @code{\\aikenHeads} or @code{\\sacredHarpHeads}.
68
69 This example shows different ways to obtain shape note heads, and
70 demonstrates the ability to transpose a melody without losing the
71 correspondence between harmonic functions and note head styles. 
72
73 "
74   doctitle = "Applying note head styles depending on the step of the scale"
75 } % begin verbatim
76 fragment = {
77   \key c \major
78   c2 d
79   e2 f
80   g2 a
81   b2 c
82 }
83
84 \score {
85   \new Staff {
86     \transpose c d 
87     \relative c' {
88       \set shapeNoteStyles = #'#(do re mi fa #f la ti)
89       \fragment
90     }
91     
92     \relative c' {
93       \set shapeNoteStyles  = #'#(cross triangle fa #f mensural xcircle diamond)
94       \fragment
95     }
96   }
97 }
98