X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Flsr%2Fnon-traditional-key-signatures.ly;h=d3184a6c499bb5f32d0a204e5e32e0f3a42e70b9;hb=1423508c355989fa26a8cfe5985b0d6e1ab0a538;hp=39bdae0bbf5653b68ada597bfd3b14bff60a6241;hpb=0177568e5c608224af3954447d48971ef4f9d930;p=lilypond.git diff --git a/input/lsr/non-traditional-key-signatures.ly b/input/lsr/non-traditional-key-signatures.ly index 39bdae0bbf..d3184a6c49 100644 --- a/input/lsr/non-traditional-key-signatures.ly +++ b/input/lsr/non-traditional-key-signatures.ly @@ -1,63 +1,90 @@ -%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it +%% Do not edit this file; it is auto-generated from input/new %% This file is in the public domain. -\version "2.11.61" +%% Note: this file works from version 2.13.0 +\version "2.13.1" \header { - lsrtags = "pitches, staff-notation" +%% Translation of GIT committish: d4f58bb3ad4e7fe1967a6b48f25e3addffc8aa14 + doctitlees = "Armaduras de tonalidad no tradicionales" + texidoces = " -doctitlees = "Armaduras de tonalidad no tradicionales" -texidoces = " La muy utilizada instrucción @code{\\key} establece la propiedad @code{keySignature} property, dentro del contexto @code{Staff}. -Para crear armaduras de tonalidad no estándar, ajuste esta propiedad -directamente. El formato de esta instrucción es una lista: +Para crear armaduras de tonalidad no estándar, ajuste esta +propiedad directamente. El formato de esta instrucción es una +lista: -@code{ \\set Staff.keySignature = #`(((octava . paso) . alteración) -((octava . paso) . alteración) ...) } donde, para cada elemento dentro -de la lista, @code{octava} especifica la octava (siendo cero la octava -desde el Do central hasta el Si por encima), @code{paso} especifica la -nota dentro de la octava (cero significa Do y 6 significa Si), y -@code{alteración} es @code{,SHARP ,FLAT ,DOUBLE-SHARP} etc. (observe -la coma precedente.) +@code{\\set Staff.keySignature = #`(((octava . paso) . alteración) +((octava . paso) . alteración) ...)} donde, para cada elemento +dentro de la lista, @code{octava} especifica la octava +(siendo@tie{}cero la octava desde el Do@tie{}central hasta el Si +por encima), @code{paso} especifica la nota dentro de la octava +(cero@tie{}significa@tie{}Do y 6@tie{}significa@tie{}Si), y +@code{alteración} es @code{,SHARP ,FLAT ,DOUBLE-SHARP} +etc. (observe la coma precedente.) -Alternativamente, para cada elemento de la lista el uso del formato -más conciso @code{(paso . alteración)} especifica que la misma -alteración debe estar en todas las octavas. +De forma alternativa, para cada elemento de la lista el uso del +formato más conciso @code{(paso . alteración)} especifica que la +misma alteración debe estar en todas las octavas. He aquí un ejemplo de una posible armadura para generar una escala exátona: +" +%% Translation of GIT committish: 6bf3e9149eb97e66b4c813e41dc7625f06c501aa + doctitlede = "Untypische Tonarten" + texidocde = " +Der üblicherweise benutzte @code{\\key}-Befehl setzt die +@code{keySignature}-Eigenschaft im @code{Staff}-Kontext. + +Um untypische Tonartenvorzeichen zu erstellen, muss man diese Eigenschaft +direkt setzen. Das Format für den Befehl ist eine Liste: @code{ \\set +Staff.keySignature = #`(((Oktave . Schritt) . Alteration) ((Oktave +. Schritt) . Alteration) ...)} wobei für jedes Element in der Liste +@code{Oktave} die Oktave angibt (0@tie{}ist die Oktave vom +eingestrichenen@tie{}C bis zum eingestrichenen@tie{}H), @code{Schritt} gibt +die Note innerhalb der Oktave an (0@tie{}heißt@tie{}C und +6@tie{}heißt@tie{}H), und @code{Alteration} ist @code{,SHARP ,FLAT +,DOUBLE-SHARP} usw. (Beachte das beginnende Komma.) + +Alternativ kann auch jedes Element der Liste mit dem allgemeineren Format +@code{(Schritt . Alteration)} gesetzt werden, wobei dann die Einstellungen +für alle Oktaven gelten. + +Hier ein Beispiel einer möglichen Tonart für eine Ganztonleiter: " + lsrtags = "pitches, staff-notation" texidoc = " The commonly used @code{\\key} command sets the @code{keySignature} property, in the @code{Staff} context. -To create non-standard key signatures, set this property directly. The +To create non-standard key signatures, set this property directly. The format of this command is a list: -@code{ \\set Staff.keySignature = #`(((octave . step) . alter) ((octave -. step) . alter) ...) } where, for each element in the list, -@code{octave} specifies the octave (0 being the octave from middle C to -the B above), @code{step} specifies the note within the octave (0 means -C and 6 means B), and @code{alter} is @code{,SHARP ,FLAT ,DOUBLE-SHARP} -etc. (Note the leading comma.) - +@code{\\set Staff.keySignature = #`(((octave . step) . alter) ((octave +. step) . alter) ...)} where, for each element in the list, +@code{octave} specifies the octave (0@tie{}being the octave from +middle@tie{}C to the B above), @code{step} specifies the note within the +octave (0@tie{}means@tie{}C and 6@tie{}means@tie{}B), and @code{alter} is +@code{,SHARP ,FLAT ,DOUBLE-SHARP} etc. (Note the leading comma.) Alternatively, for each item in the list, using the more concise format -@code{(step . alter)} specifies that the same alteration should hold in -all octaves. - - -Here is an example of a possible key signature for generating a -whole-tone scale: +@code{(step . alter)} specifies that the same alteration should hold in all +octaves. +Here is an example of a possible key signature for generating a whole-tone +scale: " doctitle = "Non-traditional key signatures" } % begin verbatim + + \relative c' { - \set Staff.keySignature = #`(((0 . 3) . ,SHARP) ((0 . 5) . ,FLAT) ((0 . 6) . ,FLAT)) + \set Staff.keySignature = #`(((0 . 6) . ,FLAT) + ((0 . 5) . ,FLAT) + ((0 . 3) . ,SHARP)) c4 d e fis aes4 bes c2 }