Hi,
        For some reason, lilypond 1.1.48 insists on typesetting the
attached file one bar per line.

This is rather frustrating!

-------cut here--------
\header{
        title = "Old 100th";
        arranger = "John Dowland";
        metre = "88 88";
        enteredby = "[EMAIL PROTECTED]";
}

\version "1.0.20";

oneline=\notes{
        \skip 1;
        \skip 2*8;
        \skip 1;
        \bar "||";
}

global = \notes{
       \key g;
       \time 4/2;
       \partial 1;
       \oneline
       \oneline
       \oneline
       \oneline
}

sop= \notes\relative c'' {
        b1 |
        b2 a c b |
        b1 d |
        d

        d |
        d2 d d b |
        e1 d |
        d1

        b |
        a2 g fis d' |
        c1 a |
        b

        b |
        g2. g4 d'2 e |
        d1 d2.() c4 |
        b1
}

alt=\notes\relative c' {
        d1 |
        d2 d e4()fis g2 |
        g1 fis |
        g

        g |
        g2 g fis e |
        g1 g |
        fis1

        d |
        fis2 d d2. d4 |
        e1 d |
        d

        g1 |
        d2 g fis g |
        g1 fis |
        g
}

ten=\notes\relative c' {
        g1 |
        g2  fis e d |
        g1 a |
        b

        b |
        b2 b a g |
        c1 b |
        a

        g |
        a2 b a g |
        e1 fis |
        g

        d'1 |
        b2 g a c |
        b1 a |
        g
}

bass=\notes\relative c{
        g1
        g2 d' a b |
        e1 d |
        g,

        g' |
        g2 g d e |
        c1 g' |
        d

        g, |
        d'2 g, d' b |
        c1 d |
        g,

        g'  |
        g2 e d c |
        g'1 d |
        g,
}


upper=\context Staff = "upper" <
        \clef "treble";
        \global
        {\voiceone \sop}
        {\voicetwo \alt}
>

lower=\context Staff = "lower" <
        \clef "bass";
        \global
        {\voiceone \ten}
        {\voicetwo \bass}
>

\score {
       \context ChoirStaff <
                \upper
                \lower
        >
        \paper{
                gourlay_maxmeasures = 6.0;
                linewidth = 180.0\mm;
                \translator {
                    \StaffContext
                    \remove "Time_signature_engraver";
                }

        }
}

Reply via email to