Ok! Here is an example in the attached file!

Il 24/09/21 07:13, Helge Kruse ha scritto:
On 24.09.2021 06:57, Mario Moles wrote:
Hi!

How to solve this warning:

attenzione: troppe collisioni tra pause

?

t's annoying!

May be. But it's also hard to find an answer without more details. There
is the idea of a minimum working example. Could you try to provide the
snippet that causes the warning?

Best regards,
Helge
\version "2.22.1"
\language "english"

\header {
  % Elimina la tagline predefinita di LilyPond
  tagline = ##f
}

\paper {
  #(set-paper-size "a4")
}

\layout {
  \context {
    \Voice
    \consists "Melody_engraver"
    \override Stem #'neutral-direction = #'()
  }
}

global = {
  \key c \major
  \time 4/4
}

classicalGuitarVoiceOne = \relative c' {
  \global
  % Qui segue la musica.
  
}

classicalGuitarVoiceTwo = \relative c' {
  \global
  % Qui segue la musica.
  <a c>8 b\rest <c a'> b\rest <d b'> b\rest <e a> s|

}

classicalGuitarVoiceThree = \relative c' {
  \global
  % Qui segue la musica.
  
}

classicalGuitarVoiceFour = \relative c' {
  \global
  % Qui segue la musica.
  d,2 e8 c\rest e, c'\rest|
}

\score {
  \new Staff \with {
    midiInstrument = "acoustic guitar (nylon)"
    instrumentName = "Chit."
    shortInstrumentName = "Chit."
  } { \clef "treble_8" << \classicalGuitarVoiceOne \\ \classicalGuitarVoiceTwo \\ \classicalGuitarVoiceThree \\ \classicalGuitarVoiceFour >> }
  \layout { }
  \midi {
    \tempo 4=100
  }
}

Reply via email to