]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/it/notation/repeats.itely
Merge branch 'master' into translation
[lilypond.git] / Documentation / it / notation / repeats.itely
index d74780cad8fbba5e0cdcfa9beeed1045c5f14c28..61d5277fb8d3e593a13c92935bd99dd1e0799f9a 100644 (file)
@@ -1,13 +1,13 @@
 @c -*- coding: utf-8; mode: texinfo; documentlanguage: it -*-
 @ignore
-    Translation of GIT committish: c91fbc19fc727ed8ef98241b86deaedfb954f1ef
+    Translation of GIT committish: ca2d9d22be422c4de98bc246dc94f7f2fd274dd2
 
     When revising a translation, copy the HEAD committish of the
     version that you are working on.  For details, see the Contributors'
     Guide, node Updating translation committishes..
 @end ignore
 
-@c \version "2.17.11"
+@c \version "2.19.21"
 
 @c Translators: Federico Bruni
 @c Translation checkers: Luca Rossetto Casel
@@ -94,20 +94,24 @@ dove @code{@var{espressione-musicale}} è la musica da ripetere.
 
 Un'unica ripetizione senza finale alternativo:
 
-@lilypond[verbatim,quote,relative=2]
-\repeat volta 2 { c4 d e f }
-c2 d
-\repeat volta 2 { d4 e f g }
+@lilypond[verbatim,quote]
+\relative {
+  \repeat volta 2 { c''4 d e f }
+  c2 d
+  \repeat volta 2 { d4 e f g }
+}
 @end lilypond
 
 Il segno di inizio della ripetizione, per impostazione predefinita, non
 appare nella prima misura.  È tuttavia possibile aggiungerlo inserendo
 a mano la battuta @code{\bar ".|:"} prima della prima nota.
 
-@lilypond[verbatim,fragment,quote,relative=2]
-\repeat volta 2 { \bar ".|:" c4 d e f }
-c2 d
-\repeat volta 2 { d4 e f g }
+@lilypond[verbatim,fragment,quote]
+\relative {
+  \repeat volta 2 { \bar ".|:" c''4 d e f }
+  c2 d
+  \repeat volta 2 { d4 e f g }
+}
 @end lilypond
 
 I finali alternativi si ottengono con @code{\alternative}.  Ogni gruppo
@@ -128,36 +132,42 @@ prime ripetizioni viene assegnata la prima alternativa.
 
 Una singola ripetizione con un finale alternativo:
 
-@lilypond[verbatim,quote,relative=2]
-\repeat volta 2 { c4 d e f | }
-\alternative {
-  { c2 e | }
-  { f2 g | }
+@lilypond[verbatim,quote]
+\relative {
+  \repeat volta 2 { c''4 d e f | }
+  \alternative {
+    { c2 e | }
+    { f2 g | }
+  }
+  c1
 }
-c1
 @end lilypond
 
 Molteplici ripetizioni con un finale alternativo:
 
-@lilypond[verbatim,quote,relative=2]
-\repeat volta 4 { c4 d e f | }
-\alternative {
-  { c2 e | }
-  { f2 g | }
+@lilypond[verbatim,quote]
+\relative {
+  \repeat volta 4 { c''4 d e f | }
+  \alternative {
+    { c2 e | }
+    { f2 g | }
+  }
+  c1
 }
-c1
 @end lilypond
 
 Molteplici ripetizioni con più di un finale alternativo:
 
-@lilypond[verbatim,quote,relative=2]
-\repeat volta 3 { c4 d e f | }
-\alternative {
-  { c2 e | }
-  { f2 g | }
-  { a2 g | }
+@lilypond[verbatim,quote]
+\relative {
+  \repeat volta 3 { c''4 d e f | }
+  \alternative {
+    { c2 e | }
+    { f2 g | }
+    { a2 g | }
+  }
+  c1
 }
-c1
 @end lilypond
 
 @warning{Se ci sono due o più finali alternativi, non ci deve essere
@@ -181,20 +191,22 @@ misura completa.  In queste situazioni i segni di ripetizione non
 sono delle vere e proprie stanghette.  Non usare il comando @code{\partial}
 o i controlli di battuta nel punto in cui si trovano questi segni:
 
-@lilypond[verbatim,quote,relative=1]
-% nessun \partial qui
-c4 e g  % nessun controllo di battuta qui
-% nessun \partial qui
-\repeat volta 4 {
-  e4 |
-  c2 e |
+@lilypond[verbatim,quote]
+\relative {
+  % nessun \partial qui
+  c'4 e g  % nessun controllo di battuta qui
+  % nessun \partial qui
+  \repeat volta 4 {
+    e4 |
+    c2 e |
+    % nessun \partial qui
+    g4 g g  % nessun controllo di battuta qui
+  }
   % nessun \partial qui
-  g4 g g  % nessun controllo di battuta qui
+  g4 |
+  a2 a |
+  g1 |
 }
-% nessun \partial qui
-g4 |
-a2 a |
-g1 |
 @end lilypond
 
 Analogalmente, se una ripetizione inizia con la misura parziale a inizio
@@ -202,18 +214,20 @@ della partitura e non ha finali alternativi, si applicano le stesse
 condizioni dell'esempio precedente, a parte il fatto che in questo
 caso è richiesto il comando @code{\partial} all'inizio della partitura:
 
-@lilypond[verbatim,quote,relative=1]
-\partial 4  % necessario
-\repeat volta 4 {
-  e4 |
-  c2 e |
+@lilypond[verbatim,quote]
+\relative {
+  \partial 4  % necessario
+  \repeat volta 4 {
+    e4 |
+    c2 e |
+    % nessun \partial qui
+    g4 g g  % nessun controllo di battuta qui
+  }
   % nessun \partial qui
-  g4 g g  % nessun controllo di battuta qui
+  g4 |
+  a2 a |
+  g1 |
 }
-% nessun \partial qui
-g4 |
-a2 a |
-g1 |
 @end lilypond
 
 
@@ -225,12 +239,14 @@ g1 |
 
 Si possono aggiungere delle legature di valore a un secondo finale:
 
-@lilypond[verbatim,quote,relative=2]
-c1
-\repeat volta 2 { c4 d e f~ }
-\alternative {
-  { f2 d }
-  { f2\repeatTie f, }
+@lilypond[verbatim,quote]
+\relative {
+  c''1
+  \repeat volta 2 { c4 d e f~ }
+  \alternative {
+    { f2 d }
+    { f2\repeatTie f, }
+  }
 }
 @end lilypond
 
@@ -247,48 +263,56 @@ corrispondente segno @qq{D.S.} deve essere agiunto manualmente.
 
 Lontano da una ripetizione:
 
-@lilypond[verbatim,quote,relative=1]
-e1
-\inStaffSegno
-f2 g a b
-c1_"D.S." \bar "|."
+@lilypond[verbatim,quote]
+\relative {
+  e'1
+  \inStaffSegno
+  f2 g a b
+  c1_"D.S." \bar "|."
+}
 @end lilypond
 
 All'inizio di una ripetizione:
 
-@lilypond[verbatim,quote,relative=1]
-e1
-\repeat volta 2 {
-  \inStaffSegno  % start repeat
-  f2 g a b
+@lilypond[verbatim,quote]
+\relative {
+  e'1
+  \repeat volta 2 {
+    \inStaffSegno  % start repeat
+    f2 g a b
+  }
+  c1_"D.S." \bar "|."
 }
-c1_"D.S." \bar "|."
 @end lilypond
 
 Alla fine di una ripetizione:
 
-@lilypond[verbatim,quote,relative=1]
-e1
-\repeat volta 2 {
+@lilypond[verbatim,quote]
+\relative {
+  e'1
+  \repeat volta 2 {
+    f2 g a b
+    \inStaffSegno  % end repeat
+  }
   f2 g a b
-  \inStaffSegno  % end repeat
+  c1_"D.S." \bar "|."
 }
-f2 g a b
-c1_"D.S." \bar "|."
 @end lilypond
 
 Tra due ripetizioni:
 
-@lilypond[verbatim,quote,relative=1]
-e1
-\repeat volta 2 {
-  f2 g a b
-}
-\inStaffSegno  % double repeat
-\repeat volta 2 {
-  f2 g a b
+@lilypond[verbatim,quote]
+\relative {
+  e'1
+  \repeat volta 2 {
+    f2 g a b
+  }
+  \inStaffSegno  % double repeat
+  \repeat volta 2 {
+    f2 g a b
+  }
+  c1_"D.S." \bar "|."
 }
-c1_"D.S." \bar "|."
 @end lilypond
 
 
@@ -299,27 +323,19 @@ stanghetta richiesto.  I tipi di stanghetta alternativi devono essere
 selezionati dai tipi predefiniti o dai tipi precedentemente definiti col
 comando @code{\defineBarLine} (vedi @ref{Bar lines}).
 
-@lilypond[verbatim,quote,relative=1]
+@lilypond[verbatim,quote]
 \defineBarLine ":|.S[" #'(":|." "S[" "")
 \defineBarLine "]" #'("]" "" "")
-e1
-\repeat volta 2 {
-  f2 g a b
-  \once \set Score.endRepeatSegnoType = ":|.S["
-  \inStaffSegno
-}
-f2 g \bar "]" a b
-c1_"D.S." \bar "|."
-@end lilypond
-
-
-@lilypond[verbatim,quote,relative=1]
-e1
-\repeat volta 2 {
-  \inStaffSegno
-  f2 g a b
+\relative {
+  e'1
+  \repeat volta 2 {
+    f2 g a b
+    \once \set Score.endRepeatSegnoType = ":|.S["
+    \inStaffSegno
+  }
+  f2 g \bar "]" a b
+  c1_"D.S." \bar "|."
 }
-c1_"D.S." \bar "|."
 @end lilypond
 
 @snippets
@@ -448,11 +464,13 @@ delle ripetizioni.  Il suo valore è una lista Scheme dei comandi di ripetizione
 @item start-repeat
 Stampa una stanghetta @code{.|:}.
 
-@lilypond[verbatim,quote,relative=2]
-c1
-\set Score.repeatCommands = #'(start-repeat)
-d4 e f g
-c1
+@lilypond[verbatim,quote]
+\relative {
+  c''1
+  \set Score.repeatCommands = #'(start-repeat)
+  d4 e f g
+  c1
+}
 @end lilypond
 
 Come vuole la pratica comune di incisione, i segni di ripetizione non vengono
@@ -461,37 +479,43 @@ stampati all'inizio di un brano.
 @item end-repeat
 Stampa una stanghetta @code{:|.}:
 
-@lilypond[verbatim,quote,relative=2]
-c1
-d4 e f g
-\set Score.repeatCommands = #'(end-repeat)
-c1
+@lilypond[verbatim,quote]
+\relative {
+  c''1
+  d4 e f g
+  \set Score.repeatCommands = #'(end-repeat)
+  c1
+}
 @end lilypond
 
 @item (volta @var{numero}) @dots{} (volta #f)
 Crea una nuova volta col numero specificato.  La parentesi della volta deve
 essere terminata esplicitamente, altrimenti non sarà stampata.
 
-@lilypond[verbatim,quote,relative=2]
-f4 g a b
-\set Score.repeatCommands = #'((volta "2"))
-g4 a g a
-\set Score.repeatCommands = #'((volta #f))
-c1
+@lilypond[verbatim,quote]
+\relative {
+  f''4 g a b
+  \set Score.repeatCommands = #'((volta "2"))
+  g4 a g a
+  \set Score.repeatCommands = #'((volta #f))
+  c1
+}
 @end lilypond
 
 @end table
 
 Comandi di ripetizione multipli possono trovarsi nello stesso punto:
 
-@lilypond[verbatim,quote,relative=2]
-f4 g a b
-\set Score.repeatCommands = #'((volta "2, 5") end-repeat)
-g4 a g a
-c1
-\set Score.repeatCommands = #'((volta #f) (volta "95") end-repeat)
-b1
-\set Score.repeatCommands = #'((volta #f))
+@lilypond[verbatim,quote]
+\relative {
+  f''4 g a b
+  \set Score.repeatCommands = #'((volta "2, 5") end-repeat)
+  g4 a g a
+  c1
+  \set Score.repeatCommands = #'((volta #f) (volta "95") end-repeat)
+  b1
+  \set Score.repeatCommands = #'((volta #f))
+}
 @end lilypond
 
 @cindex parentesi della volta con testo
@@ -504,8 +528,8 @@ nella lista Scheme,
 
 @lilypond[verbatim,quote]
 voltaAdLib = \markup { 1. 2. 3... \text \italic { ad lib. } }
-\relative c'' {
-  c1
+\relative {
+  c''1
   \set Score.repeatCommands =
     #(list(list 'volta voltaAdLib) 'start-repeat)
   c4 b d e
@@ -556,9 +580,11 @@ dove @code{@var{espressione-musicale}} è la musica e
 @code{@var{numero-di-ripetizioni}} è il numero di volte per
 cui è ripetuta @code{@var{espressione-musicale}}.
 
-@lilypond[verbatim,quote,relative=2]
-\repeat unfold 2 { c4 d e f }
-c1
+@lilypond[verbatim,quote]
+\relative {
+  \repeat unfold 2 { c''4 d e f }
+  c1
+}
 @end lilypond
 
 In alcuni casi, specialmente in un contesto @code{\relative}, la funzione
@@ -577,55 +603,63 @@ a'4 b c | a'4 b c
 
 Le ripetizioni dispiegate (unfold) possono avere dei finali alternativi.
 
-@lilypond[verbatim,quote,relative=2]
-\repeat unfold 2 { c4 d e f }
-\alternative {
-  { c2 g' }
-  { c,2 b }
+@lilypond[verbatim,quote]
+\relative {
+  \repeat unfold 2 { c''4 d e f }
+  \alternative {
+    { c2 g' }
+    { c,2 b }
+  }
+  c1
 }
-c1
 @end lilypond
 
 Se il numero di ripetizioni è maggiore del numero di finali alternativi, la
 prima alternativa viene applicata più volte, finché le alternative rimaste
 non esauriscono il numero totale delle ripetizioni.
 
-@lilypond[verbatim,quote,relative=2]
-\repeat unfold 4 { c4 d e f }
-\alternative {
-  { c2 g' }
-  { c,2 b }
-  { e2 d }
- }
-c1
+@lilypond[verbatim,quote]
+\relative {
+  \repeat unfold 4 { c''4 d e f }
+  \alternative {
+    { c2 g' }
+    { c,2 b }
+    { e2 d }
+   }
+  c1
+}
 @end lilypond
 
 Se il numero di finali alternativi è maggiore del numero di ripetizioni, solo
 le prime alternative vengono applicate. Le alternative rimanenti saranno
 ignorate e non verranno stampate.
 
-@lilypond[verbatim,quote,relative=2]
-\repeat unfold 2 { c4 d e f }
-\alternative {
-  { c2 g' }
-  { c,2 b }
-  { e2 d }
+@lilypond[verbatim,quote]
+\relative {
+  \repeat unfold 2 { c''4 d e f }
+  \alternative {
+    { c2 g' }
+    { c,2 b }
+    { e2 d }
+  }
+  c1
 }
-c1
 @end lilypond
 
 È  anche possibile annidare molteplici funzioni @code{unfold} (con o
 senza finali alternativi).
 
-@lilypond[verbatim,quote,relative=2]
-\repeat unfold 2 {
-  \repeat unfold 2 { c4 d e f }
-  \alternative {
-    { c2 g' }
-    { c,2 b }
+@lilypond[verbatim,quote]
+\relative {
+  \repeat unfold 2 {
+    \repeat unfold 2 { c''4 d e f }
+    \alternative {
+      { c2 g' }
+      { c,2 b }
+    }
   }
+  c1
 }
-c1
 @end lilypond
 
 Gli accordi si ripetono col simbolo di ripetizione dell'accordo
@@ -687,34 +721,42 @@ dove @code{@var{espressione-musicale}} è l'espressione musicale da ripetere.
 
 Fraseggi più brevi di una misura vengono sostituiti dal tratto obliquo.
 
-@lilypond[verbatim,quote,relative=2]
-\repeat percent 4 { c128 d e f }
-\repeat percent 4 { c64 d e f }
-\repeat percent 5 { c32 d e f }
-\repeat percent 4 { c16 d e f }
-\repeat percent 4 { c8 d }
-\repeat percent 4 { c4 }
-\repeat percent 2 { c2 }
+@lilypond[verbatim,quote]
+\relative c'' {
+  \repeat percent 4 { c128 d e f }
+  \repeat percent 4 { c64 d e f }
+  \repeat percent 5 { c32 d e f }
+  \repeat percent 4 { c16 d e f }
+  \repeat percent 4 { c8 d }
+  \repeat percent 4 { c4 }
+  \repeat percent 2 { c2 }
+}
 @end lilypond
 
 Fraseggi di una o due misure vengono sostituiti da simboli simili alla percentuale.
 
-@lilypond[verbatim,quote,relative=2]
-\repeat percent 2 { c4 d e f }
-\repeat percent 2 { c2 d }
-\repeat percent 2 { c1 }
+@lilypond[verbatim,quote]
+\relative c'' {
+  \repeat percent 2 { c4 d e f }
+  \repeat percent 2 { c2 d }
+  \repeat percent 2 { c1 }
+}
 @end lilypond
 
-@lilypond[verbatim,quote,relative=2]
-\repeat percent 3 { c4 d e f | c2 g' }
+@lilypond[verbatim,quote]
+\relative {
+  \repeat percent 3 { c''4 d e f | c2 g' }
+}
 @end lilypond
 
 Fraseggi più brevi di una misura ma con durate miste adottano un
 simbolo di doppia percentuale.
 
-@lilypond[verbatim,quote,relative=2]
-\repeat percent 4 { c8. <d f>16 }
-\repeat percent 2 { \tuplet 3/2 { r8 c d } e4 }
+@lilypond[verbatim,quote]
+\relative {
+  \repeat percent 4 { c''8. <d f>16 }
+  \repeat percent 2 { \tuplet 3/2 { r8 c d } e4 }
+}
 @end lilypond
 
 @snippets
@@ -750,6 +792,26 @@ Guida al funzionamento interno:
 @rinternals{Double_percent_repeat_engraver},
 @rinternals{Slash_repeat_engraver}.
 
+@knownissues
+Le ripetizioni con percentuale non contengono nient'altro che il segno
+di percentuale; in particolare, i cambi di tempo non saranno ripetuti.
+
+@lilypond[quote,verbatim,relative=2]
+\repeat percent 3 { \time 5/4 c2. 2 \time 4/4 2 2 }
+@end lilypond
+
+@noindent
+Qualsiasi cambio di tempo o comando @code{\partial} devono trovarsi in
+passaggi paralleli @emph{esterni} a qualsiasi ripetizione con percentuale,
+per esempio su una traccia di tempo separata.
+
+@lilypond[quote,verbatim,relative=2]
+<<
+  \repeat percent 3 { c2. 2 2 2 }
+  \repeat unfold 3 { \time 5/4 s4*5 \time 4/4 s1 }
+>>
+@end lilypond
+
 
 @node Ripetizioni con tremolo
 @unnumberedsubsubsec Ripetizioni con tremolo
@@ -771,10 +833,12 @@ travature o dei tratti di suddivisione obliqui alla singola nota.
 Per inserire i segni del tremolo tra le note, si usa @code{\repeat} con
 lo stile tremolo:
 
-@lilypond[quote,verbatim,relative=2]
-\repeat tremolo 8 { c16 d }
-\repeat tremolo 6 { c16 d }
-\repeat tremolo 2 { c16 d }
+@lilypond[quote,verbatim]
+\relative c'' {
+  \repeat tremolo 8 { c16 d }
+  \repeat tremolo 6 { c16 d }
+  \repeat tremolo 2 { c16 d }
+}
 @end lilypond
 
 La sintassi di @code{\repeat tremolo} prevede specificamente che
@@ -806,9 +870,11 @@ la nota, dove @code{@var{N}} indica la durata della suddivisione
 travatura al gambo della nota.  Se @code{@var{N}} è omesso, viene
 usato l'ultimo valore:
 
-@lilypond[quote,verbatim,relative=2]
-c2:8 c:32
-c: c:
+@lilypond[quote,verbatim]
+\relative {
+  c''2:8 c:32
+  c: c:
+}
 @end lilypond
 
 @snippets