]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/it/notation/simultaneous.itely
New upstream version 2.19.80
[lilypond.git] / Documentation / it / notation / simultaneous.itely
index 6fc7f34da9d9b45b2655b87ac3b4c9e05e26e841..f778e95d0fa3de3cff0a76176c39130a4d939c3f 100644 (file)
@@ -1,6 +1,6 @@
 @c -*- coding: utf-8; mode: texinfo; documentlanguage: it -*-
 @ignore
-    Translation of GIT committish: 4244c3a9fbf1f3ff2e20e665f92516d35b61de53
+    Translation of GIT committish: 212ca268e813cd72eca8c07e714e1b6669cba747
 
     When revising a translation, copy the HEAD committish of the
     version that you are working on.  For details, see the Contributors'
@@ -400,6 +400,7 @@ Questa sezione presenta le note simultanee in più voci o più righi.
 * Polifonia su un solo rigo::
 * Stili di voce::
 * Risoluzione delle collisioni::
+* Accorpare le pause::
 * Combinazione automatica delle parti::
 * Scrivere la musica in parallelo::
 @end menu
@@ -924,6 +925,41 @@ are at the same time differently dotted are not clear.
 @end ignore
 
 
+@node Accorpare le pause
+@unnumberedsubsubsec Accorpare le pause
+@translationof Merging rests
+
+In caso di voci multiple, di solito si accorpano le pause che capitano in
+entrambe. Per farlo si usa l'incisore @code{Merge_rests_engraver}.
+
+@lilypond[quote,verbatim]
+voiceA = \relative { d''4 r d2 | R1 | }
+voiceB = \relative { fis'4 r g2 | R1 | }
+\score {
+  <<
+    \new Staff \with {
+      instrumentName = "non accorpato"
+    }
+    <<
+      \new Voice { \voiceOne \voiceA }
+      \new Voice { \voiceTwo \voiceB }
+    >>
+    \new Staff \with {
+      instrumentName = "accorpato"
+      \consists #Merge_rests_engraver
+    }
+    <<
+      \new Voice { \voiceOne \voiceA }
+      \new Voice { \voiceTwo \voiceB }
+    >>
+  >>
+}
+@end lilypond
+
+Impostando la proprietà di contesto @code{suspendRestMerging} su @code{##t} è
+possibile disattivare temporaneamente l'accorpamento delle pause.
+
+
 @node Combinazione automatica delle parti
 @unnumberedsubsubsec Combinazione automatica delle parti
 @translationof Automatic part combining