X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fcombining-two-parts-on-the-same-staff.ly;h=aab3541e73f74c4a842b54a9b00c20d32178d97d;hb=2055f35c47a045a50a01ff4dba8524322cfc3b48;hp=cb7cb19aa58319a77d94936a190cfe7a087fd2d7;hpb=217cd2b9de6e783f2a5c8a42be9c70a82195ad20;p=lilypond.git diff --git a/Documentation/snippets/combining-two-parts-on-the-same-staff.ly b/Documentation/snippets/combining-two-parts-on-the-same-staff.ly index cb7cb19aa5..aab3541e73 100644 --- a/Documentation/snippets/combining-two-parts-on-the-same-staff.ly +++ b/Documentation/snippets/combining-two-parts-on-the-same-staff.ly @@ -1,24 +1,27 @@ -%% Do not edit this file; it is automatically +%% DO NOT EDIT this file manually; it is automatically %% generated from LSR http://lsr.dsi.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.13.4" +\version "2.14.0" \header { lsrtags = "simultaneous-notes, text" -%% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca +%% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d texidoces = " -La herramienta de combinación de partes ( instrucción + +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 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, -podría ser mejor no usarlo si hay solos, porque éstos no se -indicarán. En tales casos podría ser preferible la notación -polifónica estándar. +tales como @qq{solo} o @qq{a2} se añaden de forma predeterminada; para +quitarlas, sencillamente establezca la propiedad +@code{printPartCombineTexts} al valor @qq{falso}. Para partituras +vocales (como himnos), no hay necesidad de añadir los textos @qq{solo} +o @qq{a2}, por lo que se deben desactivar. Sin embargo, podría ser +mejor no usarlo si hay solos, porque éstos no se indicarán. En tales +casos podría ser preferible la notación polifónica estándar. Este fragmento de código presenta las tres formas en que se pueden imprimir dos partes sobre un solo pentagrama: polifonía estándar, @@ -28,14 +31,15 @@ textos. " doctitlees = "Combinar dos partes sobre el mismo pentagrama" -%% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d + +%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40 texidocde = " Die Funktion, die Stimmen kombiniert (also der @code{\\partcombine}-Befehl) ermöglicht die Kombination unterschiedlicher Stimmen auf einem -System. Textanweisungen wie \"solo\" or \"a2\" werden automatisch +System. Textanweisungen wie \"solo\" oder \"a2\" werden automatisch hinzugefügt. Wenn man sie entfernen will, muss man die Eigenschaft -@code{printPartCombineTexts} auf flasch setzen. Für Klavierauszüge -muss natürlich kein \"solo\"/\"a2\" usw. hinzugefügt werdne, man +@code{printPartCombineTexts} auf falsch setzen. Für Klavierauszüge +muss natürlich kein \"solo\"/\"a2\" usw. hinzugefügt werden, man sollte sie also ausschalten. Wenn aber Solo-Stellen in einem Klavierauszug oder einer Chorpartitur angezeigt werden, ist es besser, normale Polyphonie zu verwenden, weil so die Solostellen angezeigt @@ -48,6 +52,27 @@ kombinieren: Standardpolyphonie, @code{\\partcombine} ohne Text und " doctitlede = "Zwei Stimmen auf einem System kombinieren" +%% Translation of GIT committish: 1baa2adf57c84e8d50e6907416eadb93e2e2eb5c + texidocfr = " +L'outil de combinaison de parties (la commande @code{\\partcombine}) +permet d'avoir deux parties différentes sur une même portée. LilyPond +ajoute automatiquement des indications textuelles, telles que @qq{solo} +ou @qq{a2}. Si votre intention n'est que de fusionner les parties, sans +ajouter de texte, assignez faux à la propriété +@code{printPartCombineTexts}. Dans le cas de partitions vocales, et +plus particulièrement d'hymnes, ces @qq{solo/a2} ne sont d'aucune +utilité, aussi vaut-il mieux les désactiver. Dans le cas où il y aurait +alternance entre @emph{solo} et @emph{tutti}, il vaut mieux faire appel +à de la musique polyphonique standard. + +Voici trois moyens d'imprimer deux parties sur un même portée : en +polyphonie normale, avec @code{\\partcombine} sans indication +supplémentaire, et avec @code{\\partcombine} commentée. + +" + doctitlefr = "Combinaison de deux parties sur une même portée" + + texidoc = " The part combiner tool ( @code{\\partcombine} command ) allows the combination of several different parts on the same staff. Text @@ -86,15 +111,15 @@ musicDown = \relative c'' { << << \new Staff { - \set Staff.instrumentName = "Standard polyphony " + \set Staff.instrumentName = #"Standard polyphony" << \musicUp \\ \musicDown >> } \new Staff \with { printPartCombineTexts = ##f } { - \set Staff.instrumentName = "PartCombine without texts " + \set Staff.instrumentName = #"PartCombine without texts" \partcombine \musicUp \musicDown } \new Staff { - \set Staff.instrumentName = "PartCombine with texts " + \set Staff.instrumentName = #"PartCombine with texts" \partcombine \musicUp \musicDown } >>