X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Flsr%2Fnon-traditional-key-signatures.ly;h=f657510fdcfd74e4044694cbd0391671abedb08d;hb=ae5cf53569c95d0e35e98a7abd292c4f8a82b528;hp=dd350da1dade83357803ec7da2de1c743b730171;hpb=0990302a9701a6a29132316b9302caacd35a8196;p=lilypond.git diff --git a/input/lsr/non-traditional-key-signatures.ly b/input/lsr/non-traditional-key-signatures.ly index dd350da1da..f657510fdc 100644 --- a/input/lsr/non-traditional-key-signatures.ly +++ b/input/lsr/non-traditional-key-signatures.ly @@ -1,15 +1,41 @@ %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it %% This file is in the public domain. -\version "2.11.38" +\version "2.11.55" \header { lsrtags = "pitches, staff-notation" - texidoc = " + +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: + +@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.) + +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. + +He aquí un ejemplo de una posible armadura para generar una escala +exátona: + +" + + texidoc = " The commonly used @code{\\key} command sets the @code{keySignature} property, in the @code{Staff} context. -For non-standard key signatures, you can set this property directly. -The format of this command is a list: +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, @@ -19,18 +45,20 @@ C and 6 means B), and @code{alter} is @code{,SHARP ,FLAT ,DOUBLE-SHARP} etc. (Note the leading comma.) -However, for each item in the list, you can also use the alternative -format @code{(step . alter)}, which specifies that the same alteration -should hold in all octaves. +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: -" } -% begin verbatim + +" + doctitle = "Non-traditional key signatures" +} % begin verbatim \relative c' { \set Staff.keySignature = #`(((0 . 3) . ,SHARP) ((0 . 5) . ,FLAT) ((0 . 6) . ,FLAT)) c4 d e fis - aes bes c2 + aes4 bes c2 }