lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Programming error


From: Peter Toye
Subject: Re: Programming error
Date: Sun, 12 Apr 2015 13:08:54 +0100

Sorry for the late reply - been rather busy.

This is the LP that gives the error - I don't think I can cut it down any more.

I got round it by accident - changed quite a few details and it worked OK, but I'm not 100% sure exactly which combination of changes solved the problem. But I can't see what's wrong with what I've got.

Regards,

Peter
mailto:address@hidden
www.ptoye.com

\version "2.18.2"

%\include "lilypond-book-preamble.ly"

\language "english"


\layout {
 ragged-right  = ##t
}

myBar= { \bar "|" }

\score {

 \new Staff \with {
   \remove "Bar_number_engraver"
   \remove "Time_signature_engraver"

 }

 \new Voice \with {
   \remove "Stem_engraver"
 }

 \relative c {
   \key c \major
   \clef bass
   \set Timing.defaultBarType = ""

   << \new Voice
     
      \with {
        \remove "Stem_engraver"
      }
     
      {  
        \voiceOne
        d1^5 s \myBar c^4 s \myBar b^3}
      \new Voice
     
      \with {
        \remove "Stem_engraver"
      }

      { \voiceTwo
        g4 a g a b a b a g a g a b a b a g a g a }
   >>

 }

}


reply via email to

[Prev in Thread] Current Thread [Next in Thread]