From fef99f80f888dbb436c551a9d2644135c6630277 Mon Sep 17 00:00:00 2001 From: Neil Puttock Date: Mon, 29 Dec 2008 14:14:43 +0000 Subject: [PATCH] LSR: Update. --- ...modern-transcription-of-gregorian-music.ly | 6 ++-- input/lsr/changing-the-breath-mark-symbol.ly | 2 +- .../combining-two-parts-on-the-same-staff.ly | 2 +- input/lsr/creating-a-delayed-turn.ly | 28 +++++++++++++++++++ input/lsr/editorial-annotations.snippet-list | 1 + input/lsr/expressive-marks.snippet-list | 1 + ...ues-for-articulation-shorthand-notation.ly | 2 +- .../specifying-context-with-beatgrouping.ly | 4 ++- input/lsr/tweaks-and-overrides.snippet-list | 1 + input/new/creating-a-delayed-turn.ly | 5 ++-- 10 files changed, 42 insertions(+), 10 deletions(-) create mode 100644 input/lsr/creating-a-delayed-turn.ly diff --git a/input/lsr/ancient-notation-template----modern-transcription-of-gregorian-music.ly b/input/lsr/ancient-notation-template----modern-transcription-of-gregorian-music.ly index b062352544..c4c313a526 100644 --- a/input/lsr/ancient-notation-template----modern-transcription-of-gregorian-music.ly +++ b/input/lsr/ancient-notation-template----modern-transcription-of-gregorian-music.ly @@ -6,14 +6,14 @@ lsrtags = "ancient-notation, template" texidoces = " -Este ejemplo muestra cómo hacer una transcripción moderna de Canto -Gregoriano. El Canto Gregoriano no tiene compás ni plicas; utiliza +Este ejemplo muestra cómo hacer una transcripción moderna de canto +gregoriano. El canto gregoriano no tiene compás ni plicas; utiliza solamente cabezas de nota de blanca y de negra, y unas marcas especiales que indican silencios de distintas longitudes. " - doctitlees = "Plantilla para notación de música antigua (transcripción moderna de Canto Gregoriano)" + doctitlees = "Plantilla para notación de música antigua (transcripción moderna de canto gregoriano)" texidocde = " Dieses Beispiel zeigt eine moderne Transkription des Gregorianischen diff --git a/input/lsr/changing-the-breath-mark-symbol.ly b/input/lsr/changing-the-breath-mark-symbol.ly index ed6d49f12d..c9db86ef07 100644 --- a/input/lsr/changing-the-breath-mark-symbol.ly +++ b/input/lsr/changing-the-breath-mark-symbol.ly @@ -7,7 +7,7 @@ texidoces = " El glifo de la marca de respiración se puede ajustar -sobreescribiendo la proopiedad de texto del objeto de presentación +sobreescribiendo la propiedad de texto del objeto de presentación @code{BreathingSign}, con cualquier otro texto de marcado. " diff --git a/input/lsr/combining-two-parts-on-the-same-staff.ly b/input/lsr/combining-two-parts-on-the-same-staff.ly index 750d4cb9c4..e51eb43132 100644 --- a/input/lsr/combining-two-parts-on-the-same-staff.ly +++ b/input/lsr/combining-two-parts-on-the-same-staff.ly @@ -10,7 +10,7 @@ La herramienta de combinación de partes ( instrucción @code{\\partcombine}) permite la combinación de varias partes diferentes sobre el mismo pentagrama. Las indicaciones textuales tales como \"solo\" o \"a2\" se añaden de forma predeterminada; -para quitarlas, sencillamente establezca la proopiedad +para quitarlas, sencillamente establezca la propiedad @code{printPartCombineTexts} al valor \"falso\". Para partituras vocales (como himnos), no hay necesidad de añadir los textos \"solo\" o \"a2\", por lo que se deben desactivar. Sin embargo, diff --git a/input/lsr/creating-a-delayed-turn.ly b/input/lsr/creating-a-delayed-turn.ly new file mode 100644 index 0000000000..b1a6a07f3b --- /dev/null +++ b/input/lsr/creating-a-delayed-turn.ly @@ -0,0 +1,28 @@ +%% Do not edit this file; it is auto-generated from input/new +%% This file is in the public domain. +\version "2.12.0" + +\header { + lsrtags = "expressive-marks, editorial-annotations, tweaks-and-overrides" + texidoc = "Creating a delayed turn, where the lower note of the + turn uses the accidental, requires several overrides. The + @code{outside-staff-priority} property must be set to #f, as otherwise + this would take precedence over the @code{avoid-slur property}. The + value of @code{halign} is used to position the turn horizontally." + + doctitle = "Creating a delayed turn" +} % begin verbatim + + +\relative c'' { + \once \override TextScript #'avoid-slur = #'inside + \once \override TextScript #'outside-staff-priority = ##f + c2(^\markup \tiny \override #'(baseline-skip . 1) { + \halign #-4 + \center-column { + \sharp + \musicglyph #"scripts.turn" + } + } + d4.) c8 +} diff --git a/input/lsr/editorial-annotations.snippet-list b/input/lsr/editorial-annotations.snippet-list index c3d82864aa..652c2b3f99 100644 --- a/input/lsr/editorial-annotations.snippet-list +++ b/input/lsr/editorial-annotations.snippet-list @@ -8,6 +8,7 @@ changing-a-single-notes-size-in-a-chord.ly changing-the-appearance-of-a-slur-from-solid-to-dotted-or-dashed.ly coloring-notes-depending-on-their-pitch.ly controlling-the-placement-of-chord-fingerings.ly +creating-a-delayed-turn.ly creating-blank-staves.ly default-direction-of-stems-on-the-center-line-of-the-staff.ly embedding-native-postscript-in-a--markup-block.ly diff --git a/input/lsr/expressive-marks.snippet-list b/input/lsr/expressive-marks.snippet-list index 7d9e09b246..e95535469b 100644 --- a/input/lsr/expressive-marks.snippet-list +++ b/input/lsr/expressive-marks.snippet-list @@ -12,6 +12,7 @@ changing-the-breath-mark-symbol.ly combining-dynamics-with-markup-texts.ly contemporary-glissando.ly controlling-the-vertical-ordering-of-scripts.ly +creating-a-delayed-turn.ly creating-arpeggios-across-notes-in-different-voices.ly creating-cross-staff-arpeggios-in-a-piano-staff.ly creating-cross-staff-arpeggios-in-other-contexts.ly diff --git a/input/lsr/modifying-default-values-for-articulation-shorthand-notation.ly b/input/lsr/modifying-default-values-for-articulation-shorthand-notation.ly index e3046d11c1..a2e9dd9cf3 100644 --- a/input/lsr/modifying-default-values-for-articulation-shorthand-notation.ly +++ b/input/lsr/modifying-default-values-for-articulation-shorthand-notation.ly @@ -13,7 +13,7 @@ Las abreviaturas se encuentran definidas dentro del archivo valores predeterminados. Se pueden modificar estos valores predeterminados para las abreviaturas. Por ejemplo, para asociar la abreviatura @code{-+} (@code{dashPlus}) con el símbolo del -semitrino en lugar del símboloo predeterminado +, asigne el valor +semitrino en lugar del símbolo predeterminado +, asigne el valor @code{trill} a la variable @code{dashPlus}: " diff --git a/input/lsr/specifying-context-with-beatgrouping.ly b/input/lsr/specifying-context-with-beatgrouping.ly index 884f0824b2..621f2195ca 100644 --- a/input/lsr/specifying-context-with-beatgrouping.ly +++ b/input/lsr/specifying-context-with-beatgrouping.ly @@ -16,7 +16,9 @@ altos: texidoc = " By specifying the context, the effect of @code{beatGrouping} can be limited to the context specified, and the values which may have -been set in higher-level contexts can be overridden: +been set in higher-level contexts can be overridden. The +@code{\set} commands must be placed @emph{after} all @code{\time} +commands: " doctitle = "Specifying context with beatGrouping" } % begin verbatim diff --git a/input/lsr/tweaks-and-overrides.snippet-list b/input/lsr/tweaks-and-overrides.snippet-list index a40f0534ac..e4264b29c7 100644 --- a/input/lsr/tweaks-and-overrides.snippet-list +++ b/input/lsr/tweaks-and-overrides.snippet-list @@ -9,6 +9,7 @@ changing-the-default-text-font-family.ly changing-the-staff-size.ly controlling-the-vertical-ordering-of-scripts.ly controlling-tuplet-bracket-visibility.ly +creating-a-delayed-turn.ly creating-simultaneous-rehearsal-marks.ly creating-text-spanners.ly custodes.ly diff --git a/input/new/creating-a-delayed-turn.ly b/input/new/creating-a-delayed-turn.ly index 971657874b..38fec61933 100644 --- a/input/new/creating-a-delayed-turn.ly +++ b/input/new/creating-a-delayed-turn.ly @@ -1,8 +1,7 @@ \version "2.12.0" \header { - lsrtags = "expressive-marks, editorial-annotations, tweaks-and-overrides, - symbols-and-glyphs" + lsrtags = "expressive-marks, editorial-annotations, tweaks-and-overrides" texidoc = "Creating a delayed turn, where the lower note of the turn uses the accidental, requires several overrides. The @code{outside-staff-priority} property must be set to #f, as otherwise @@ -18,7 +17,7 @@ c2(^\markup \tiny \override #'(baseline-skip . 1) { \halign #-4 \center-column { - \musicglyph #"accidentals.sharp" + \sharp \musicglyph #"scripts.turn" } } -- 2.39.5