Re: systemSeperators

2008-01-10 Thread Valentin Villenave
2008/1/10, Ole Schmidt [EMAIL PROTECTED]:
 where do I have to put systemSeperatorMarkup = ##t to get those
 double slashes in my score. I've tried inside the \paper { } block
 whith no success

\paper {
  systemSeparatorMarkup = \slashSeparator
}

works here.

Maybe it's just a typo error...

Cheers,
Valentin


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


Re: systemSeperators

2008-01-10 Thread Ole Schmidt

thanks a lot,

I don't now how to concatenate the information given in the manual,  
it was pretty cryptic to me:


systemSeparatorMarkup
This contains a markup ob ject, which will be inserted between systems.
This is often used for orchestral scores. Unset by default.
The markup command \slashSeparator is provided as a sensible de-
fault, for example

ole



Am 10.01.2008 um 20:22 schrieb Valentin Villenave:


2008/1/10, Ole Schmidt [EMAIL PROTECTED]:

where do I have to put systemSeperatorMarkup = ##t to get those
double slashes in my score. I've tried inside the \paper { } block
whith no success


\paper {
  systemSeparatorMarkup = \slashSeparator
}

works here.

Maybe it's just a typo error...

Cheers,
Valentin


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


Re: systemSeperators

2008-01-10 Thread Ole Schmidt
btw, can I change the size of the seperators- they look pretty cute  
but I doubt if they help...(see jpg)


thanks

ole
inline: Bild 2.jpg


Am 10.01.2008 um 20:22 schrieb Valentin Villenave:


2008/1/10, Ole Schmidt [EMAIL PROTECTED]:

where do I have to put systemSeperatorMarkup = ##t to get those
double slashes in my score. I've tried inside the \paper { } block
whith no success


\paper {
  systemSeparatorMarkup = \slashSeparator
}

works here.

Maybe it's just a typo error...

Cheers,
Valentin


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


Re: systemSeperators

2008-01-10 Thread Tim Reeves
Ole Schmidt wrote:

where do I have to put systemSeperatorMarkup = ##t to get those 
double slashes in my score. I've tried inside the \paper { } block 
whith no success


Someone suggested it was a typo - sure enough,

seperator != separator.




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


Re: systemSeperators

2008-01-10 Thread lilypondtool

If you look at the declaration of slashSeparator (it is in titling-init.ly):
slashSeparator = \markup {
  \hcenter
  \vcenter \combine
  \beam #2.0 #0.5 #0.48
  \raise #0.7 \beam #2.0 #0.5 #0.48
}


You will easily see how to change it.

Quoting Ole Schmidt [EMAIL PROTECTED]:


btw, can I change the size of the seperators- they look pretty cute
but I doubt if they help...(see jpg)

thanks

ole






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


Re: systemSeperators

2008-01-10 Thread Valentin Villenave
2008/1/10, Ole Schmidt [EMAIL PROTECTED]:
 btw, can I change the size of the seperators- they look pretty cute
 but I doubt if they help...(see jpg)

 thanks

What does the doc tell you?

 systemSeparatorMarkup
 This contains a markup ob ject, which will be inserted between systems.

OK. So it is in fact a markup. You can do whatever you want with it:

systemSeparatorMarkup = \markup {
\bold \huge Ole \normal was here }

 This is often used for orchestral scores. Unset by default.

OK. By default, you won't have any.

 The markup command \slashSeparator is provided as a sensible de-
 fault, for example

The \slashSeparator is a shortcut to insert a nice (but tiny) slash. OK.

Let's see how it is made. The source file is in the /ly directory, and
we can see in titling-init.ly that the \slashseparator command is
actually defined as follows :
slashSeparator = \markup {
  \hcenter
  \vcenter \combine
  \beam #2.0 #0.5 #0.48
  \raise #0.7 \beam #2.0 #0.5 #0.48
}

You can play with these numbers the way you want.

Cheers,
Valentin


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