lilypond-user
[Top][All Lists]
Advanced

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

Re: MagnifyStaff Bug?


From: Carl Sorensen
Subject: Re: MagnifyStaff Bug?
Date: Sun, 15 May 2016 23:22:32 +0000
User-agent: Microsoft-MacOutlook/14.6.3.160329


On 5/15/16 1:20 PM, "Carl-Henrik Buschmann" <address@hidden> wrote:

>Those lines at the end of the system should be perfect in line with
>the ends of the staff, should they not? I have not seen it in print
>before, 
>have anybody else?
>PS. 
>After 
>that speech about not giving a compatible example -which is not at all
>relevant in regard to this question, it is a simple see and confirm my
>suspicions or not- I think it is quite a arrogant way to address the
>problem. More and more of the way communication traverses on this list
>leaves me with a bad taste in my mouth and it is a
>shame. 

I'm sorry that you are getting a bad taste when people ask you to provide
a working example so they can better help you.  In my mind, this is just a
way to be able to do the best to help.

I have made smaller staffs in the past using a different means than
MagnifyStaff.  Because I don't have your code, I don't know if my code
would have the same problem as yours.  I have made up some music to go
into your variables to make things compile, and it looks good on my
example.  But I don't know if it would work with yours or not.

So here is another way to do things; I don't know if it meets your needs.

melody = \relative {
  c''4 d e f |
  c4 d e f |
}

violinDynamics = {
}

repeatBars = {
}

pianoNotesRight = \relative {
  c'4 d e f |
  c4 d e f |
}

pianoDynamics = {
}

pianoNotesLeft = \relative {
  c4 d e f |
  c4 d e f |
}

\score {
    <<
      \new Staff \with {
         fontSize = #-2
        \override StaffSymbol #'staff-space = #(magstep -2)
        instrumentName = #"Violin "
        shortInstrumentName = #"Vln. "
      }
      {
        <<\melody \violinDynamics \repeatBars>>
      }

      \new PianoStaff  \with {
        instrumentName = #"Piano "
        shortInstrumentName = #"Pno. "
      }
      <<
        \new Staff = "Right" <<\pianoNotesRight \repeatBars>>
        \new Dynamics = "Dynamics" \pianoDynamics
        \new Staff = "Left" <<\clef bass \pianoNotesLeft \repeatBars>>
      >>
    >>
  }



Hope this helps,

Carl




reply via email to

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