X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fadding-orchestral-cues-to-a-vocal-score.ly;h=a03e901d16899ffa01e5add125a12c3ac4b0c584;hb=7738c6fa2759373c05e34b003a7ed521e9382f37;hp=e1c2d865f4d69fea3147da747de5db791bde7d88;hpb=790da92c9cd1d58b39843ace365ed81c81fa3ec4;p=lilypond.git diff --git a/Documentation/snippets/adding-orchestral-cues-to-a-vocal-score.ly b/Documentation/snippets/adding-orchestral-cues-to-a-vocal-score.ly index e1c2d865f4..a03e901d16 100644 --- a/Documentation/snippets/adding-orchestral-cues-to-a-vocal-score.ly +++ b/Documentation/snippets/adding-orchestral-cues-to-a-vocal-score.ly @@ -1,77 +1,14 @@ %% DO NOT EDIT this file manually; it is automatically -%% generated from LSR http://lsr.dsi.unimi.it +%% generated from LSR http://lsr.di.unimi.it %% Make any changes in LSR itself, or in Documentation/snippets/new/ , %% and then run scripts/auxiliar/makelsr.py %% %% This file is in the public domain. -\version "2.14.0" +\version "2.19.22" \header { lsrtags = "staff-notation, vocal-music" -%% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c - - texidoces = " - Este ejemplo muestra una forma de simplificar la adición de muchas -notas guía orquestales a la reducción de piano en una partitura vocal. -La función musical @code{\\cueWhile} toma cuatro argumentos: la música -de la que se toma la cita, como viene definida por @code{\\addQuote}, -el nombre que insertar antes de las notas guía, y después @code{#UP} o -@code{#DOWN} para especificar @code{\\voiceOne} con el nombre encima -del pentagrama o bien @code{\\voiceTwo} con el nombre debajo del -pentagrama, y finalmente la música de piano con la que las notas guía -deben aparecer en paralelo. El nombre del instrumento citado se -posiciona a la izquierda de las notas guía. Se pueden citar muchos -pasajes como guía, pero no se pueden superponer en el tiempo entre -ellos. - -" - - doctitlees = "Añadir notas guía orquestales a una partitura vocal" - - - - -%% Translation of GIT committish: 27b1197f3bae8512c14d946752cd3e40e7c76016 - - - texidocde = " -Hier wird gezeigt, wie man das Hinzufügen von vielen Orchsterstichnoten -zu einem Klavierauszug hinzufügen kann. Die musikalische Funktion -@code{\\cueWhile} braucht vier Argumente: Die Noten, von denen die -Stichnoten formatiert werden sollen, definiert durch @code{\\addQuote}, -die Bezeichnung, die mit den Noten angegeben werden soll, dann entweder -@code{#UP} (hoch) oder @code{#DOWN} (runter) zur Angabe von entweder -@code{\\voiceOne} mit der Bezeichnung über dem System oder @code{\\voiceTwo} -mit der Bezeichnung unter dem System, und schließlich die Klaviermusik, -die parallel zu den Stichnoten gespielt werden soll. Die Bezeichnung des -Stichnoteninstruments wird links der Stichnoten positioniert. Viele -Abschnitte können zitiert werden, aber sie dürfen sich nicht überlappen. - -" - doctitlede = "Orchesterstichnoten zu einem Klavierauszug hinzufügen" - - -%% Translation of GIT committish: c1d5bb448321d688185e0c6b798575d4c325ae80 - - texidocfr = " -Lorsque le nombre d'instruments cités dans la réduction pour piano se -multiplie, vous pourriez avoir intérêt à créer votre propre fonction -pour gérer ces repères. La fonction musicale @code{\\cueWhile} prend -quatre arguments@tie{}: la musique d'où provient la citation, telle que -définie par @code{\\addQuote}, le nom qui sera mentionné en regard de -cette citation, son positionnement -- @code{#UP} ou @code{#DOWN} selon -qu'il sera attribué à @code{\\voiceOne} et placé au-dessus ou -@code{\\voiceTwo} et placé en dessous -- et enfin la musique du piano -qui interviendra en parallèle. Le nom de l'instrument en question -viendra s'aligner sur la gauche de la citation. Bien que vous puissiez -effectuer plusieurs citations, elle ne peuvent être simultanées. - -" - doctitlefr = "Indication de l'instrument cité dans l'accompagnement d'une -partition pour chœur" - - texidoc = " This shows one approach to simplify adding many orchestral cues to the piano reduction in a vocal score. The music function @code{\\cueWhile} @@ -90,13 +27,13 @@ can be cued, but they cannot overlap each other in time. cueWhile = #(define-music-function - (parser location instrument name dir music) + (instrument name dir music) (string? string? ly:dir? ly:music?) #{ - \cueDuring $instrument #$dir { - \once \override TextScript #'self-alignment-X = #RIGHT - \once \override TextScript #'direction = $dir - s1*0-\markup { \tiny $name } + \cueDuring $instrument #dir { + \once \override TextScript.self-alignment-X = #RIGHT + \once \override TextScript.direction = $dir + <>-\markup { \tiny #name } $music } #})