Re: Help wanted from a blind user

2015-06-18 Thread Marc Hohl

Am 18.06.2015 um 03:33 schrieb Daniel Contreras:

Hello ponders,
Just wanted to thank you guys first of all for all your help with my questions. 
What I am trying to accomplish this time is the following.
A common practice in arranging for salsa or Latin music I am finding out is 
that when one is dealing with a d.s. al coda and things of that nature, it may 
require for the staff to stop at the double bar line, notate the ds and so 
forth, and start fresh again on the next system. So to summarize, I want a 
marked up in the middle of where a staff should be, but no staff lines or notes 
or anything. Can someone lead me in the right direction to accomplish this? 
Thanks again, and sorry for the complicated explanation.


Perhaps

http://lsr.di.unimi.it/LSR/Item?id=198
(D.S. without line break)

or

http://lsr.di.unimi.it/LSR/Item?id=190
(D.S. with line break)

should do the trick?

HTH,

Marc


Daniel Contreras
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user




___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Help wanted from a blind user

2015-06-17 Thread Jim Long
On Wed, Jun 17, 2015 at 08:33:26PM -0500, Daniel Contreras wrote:
> A common practice in arranging for salsa or Latin music I am
> finding out is that when one is dealing with a d.s. al coda and
> things of that nature, it may require for the staff to stop at the
> double bar line, notate the ds and so forth, and start fresh again
> on the next system. So to summarize, I want a marked up in the
> middle of where a staff should be, but no staff lines or notes or
> anything. Can someone lead me in the right direction to accomplish
> this? Thanks again, and sorry for the complicated explanation.
> 
> Daniel Contreras 

This is not necessarily peculiar to latin/salsa, it is rather prevalent
in popular music of many idioms.

This may not be the cleanest way to do it, but I generally use
something like this, when I need something like what you're
referring to:

\version "2.18.2"

\score {
  {
\repeat unfold 12 { c'4 }
\bar "||"
\stopStaff
s1 _\markup "Your D.S. markup here"
\once \override Score.BarLine.break-visibility = #end-of-line-invisible
\break

\startStaff
% Your coda goes here:
\repeat unfold 12 d'4
d'1
\bar "|."
  }
}



___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user