Hello,

I just wanted to start with a new music sheet. I must admit that I haven't 
worked with lilypond for a long time and I'm not an expert in music notation. 
But I noticed an ugly output in the third measure. At first view, it is not 
clear where the dot belongs to (it belongs to the fis). Now I'm not sure if 
lilypond is responsible for this or if it's me. :-)

I would be happy if you could have a look at the source and tell me if I did 
something stupid or not. btw, the music sheet is for organ.

(I hope that attaching the little file works)

Thanks a lot,
Martin
\version "2.10.20"

\include "deutsch.ly"

upper = \relative c'' {
        \clef violin
        \key d \major
        \time 3/4
        % Takt 1
        << {fis,2.(} \\ {<fis, h d>8\staccato  <fis h d>8\staccato <fis h 
d>8\staccato <fis h d>8\staccato <fis h d>8\staccato <fis h d>8\staccato} >> |
        << {fis'2.)( } \\ {<fis, h d>8 <fis h d>8 <fis h d>8 <fis h d>8 <fis 
ais e'>8 <fis ais e'>8} >> |
        << {fis'2.) } \\ {<ais, e'>8\cr <ais e'>8 <ais e'>8 <ais e'>8 <h dis>8 
<h dis>8\!} >> |
}
lower = \relative c' {
        \clef bass
        \key d \major
        \time 3/4
        % Takt 1
        R2. |
        r8 h,16( cis d4. cis8) |
        r8 cis16( e g4. fis8) |
}
pedal = \relative c {
        \clef bass
        \key d \major
        \time 3/4
        % Takt 1
        R2. |
        R2. |
        R2. |
}

% Layout ...
\score {
        <<
                \new PianoStaff {
                        \set PianoStaff.instrumentName = "Manual "
                        \set PianoStaff.midiInstrument = "church organ"
                        <<
                                \context Staff = "upper" \upper
                                \context Staff = "lower" \lower
                        >>
                }
                \new Staff = "pedal" \pedal {
                        \set Staff.instrumentName = "Pedal "
                        \set Staff.midiInstrument = "church organ"
                }
        >>
        \layout {}
}

% MIDI ...
\score {
        <<
                \new PianoStaff {
                        \set PianoStaff.instrumentName = "Manual "
                        \set PianoStaff.midiInstrument = "church organ"
                        <<
                                \unfoldRepeats \context Staff = "upper" \upper
                                \unfoldRepeats \context Staff = "lower" \lower
                        >>
                }
                \unfoldRepeats \new Staff = "pedal" \pedal {
                        \set Staff.instrumentName = "Pedal "
                        \set Staff.midiInstrument = "church organ"
                }
        >>
        
  \midi {
    \context {
      \Score
      }
    }


}
_______________________________________________
lilypond-user mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to