Hello,
I'm almost done with this score. I'd like to have the vocal line without any barlines, except for the ending barline. So, I can't remove the bar_engraver, otherwise I don't get the ending barline. How do I do that?
thanks,
jim altieri


\version "2.8.7"

\paper {
 #(set-paper-size "11x17" 'landscape)
   after-title-space = 1\in
   top-margin = 0.5\in
}

\header
{
   title = "thirty-two feet per second per second"
      composer = "Jim Altieri"
   tagline =""
}


melody = \relative c { \clef "G_8"
       \key g \major
       \cadenzaOn
\mark \markup { \hspace #0 \raise #3 { Floating ({ \note #"8" #1.0 } "=190") }}
       r1\fermata
       \bar ""
       \hideNotes e,4 \glissando \unHideNotes a1\fermata\p\<
       \hideNotes g4 \glissando \unHideNotes c1\fermata
       \hideNotes a4 \glissando \unHideNotes d1\fermata
       \hideNotes b4 \glissando \unHideNotes e1\fermata
       \hideNotes c4 \glissando \unHideNotes fis1\fermata
       \hideNotes e4 \glissando \unHideNotes a1\fermata
       \hideNotes g4 \glissando \unHideNotes c1\fermata
       \hideNotes a4 \glissando \unHideNotes d1\fermata
       \hideNotes b4 \glissando \unHideNotes e1\fermata
       \hideNotes c4 \glissando \unHideNotes fis1\fermata
       \hideNotes e4 \glissando \unHideNotes a1\fermata
       \hideNotes g4 \glissando \unHideNotes c1\fermata
       \hideNotes a4 \glissando \unHideNotes d1\fermata
       \hideNotes b4 \glissando \unHideNotes e1\fermata
       \hideNotes c4 \glissando \unHideNotes fis1\fermata\!\fff
       \hideNotes d4 \glissando \unHideNotes gis1\fermata
       \hideNotes e4 \glissando \unHideNotes a1\fermata
       \bar "|."
    }
upper = \relative c' {
       \clef treble
       \key g \major
       e8\p [ fis c'] e,[ fis c']
       \bar ":|"
       \stopStaff
\set crescendoText = \markup { \italic "repeat ad lib. cresc. e accel. poco a poco" }
        \set crescendoSpanner = #'dashed-line
       \hideNotes c4\< \unHideNotes
       \skip 1*82/4
       \startStaff
       \bar "|"
       \set tieWaitForNote = ##t
       d,8\!\ff~ [ e~ bes'~] \hideNotes <d, e bes'>4.

    }
lower = \relative c {
       \clef bass
       \key g \major
        d8\sustainDown[ a'] d,[ a'] d,[ a']
       \stopStaff
       \skip 1*83/4
       \startStaff
       \set tieWaitForNote = ##t
       c,8~ [ g'~] \hideNotes a8 <c, g'>4.\sustainUp
   }

    \score {
       <<
          \new Staff <<
           \set Staff.instrument = "Voice "
              \autoBeamOff
              \melody
          >>
\new PianoStaff <<
           \set PianoStaff.instrument = "Piano"
        \new Staff = "upper" \upper
        \new Staff = "lower"  \lower
        >>
      >>
      \layout {
       indent = #9
        ragged-right = ##t
}
}


_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to