Re: "Floating" markup

2013-10-16 Thread EdBeesley
Thanks for your suggestions guys - I love the use of instrument name, much
less hacky than my original solution!

Thomas I tried your code in 2.16.2 but still ended up with a big gap between
the clef and first note?

I used NoteHead.extra-spacing-width because it was the first thing I tried
that worked :)

It looks like using SpacingSpanner.spacing-increment is the more sensible
way of doing it?



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Floating-markup-tp152332p152368.html
Sent from the User mailing list archive at Nabble.com.

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


Re: "Floating" markup

2013-10-15 Thread Thomas Morley
2013/10/15 James Worlton :
> On Tue, Oct 15, 2013 at 3:16 PM, Jim Long  wrote:
>>
>> On Tue, Oct 15, 2013 at 09:04:13AM -0500, James Worlton wrote:
>> >
>> > This solution is also kind of hacky, but it looks like it may do more or
>> > less what you want. It also scales pretty well to other staff sizes. I'm
>> > not sure how to slide the staff names to the right, however:
>>
>> This slides the instrument name to the right and slightly up:
>>
>> ...
>>   \new Staff ="staff" \with {
>> \remove Time_signature_engraver
>> \override InstrumentName.X-offset = #-4
>> \override InstrumentName.Y-offset = #1
>> instrumentName = \markup { \vspace #1.5
>>   \center-column { \italic "Count:"
>>\vspace #2
>>\line { \italic "Sticking:" }
>>   }
>> }
>>   }
>>
>
> Or if you're on 2.16, the syntax is \override InstrumentName #'X-offset =
> #-4 etc.
> Thanks for this. I should have delved more deeply into InstrumentName
> attributes.
>
> James W.



Why not use stanza (and SpacingSpanner #'spacing-increment instead of
NoteHead #'extra-spacing-width):

\version "2.16.2"

# (set-global-staff-size 30) % yep, 30!

count =
\lyricmode {
   \set stanza = \markup \normal-text "Count: "
   \repeat unfold 2 { "1" "2" "3" "4" }
}

sticking =
\lyricmode {
   \set stanza = \markup \normal-text "Sticking: "
   \repeat unfold 2 { R L R L }
}

stickingII =
\lyricmode {
   %\set stanza = \markup \normal-text "StickingII: "
   \repeat unfold 2 { L R L R }
}

\score {
<<
  \new Staff ="staff" \with { \remove "Time_signature_engraver" }
\new Voice ="one" {
\clef percussion
\override Score.SpacingSpanner #'spacing-increment = #2
d'4 d' d' d'
\newSpacingSection
\override Score.SpacingSpanner #'spacing-increment = #4
d' d' d' d'
}

  \new Lyrics \with { alignAboveContext = "staff" }
  \lyricsto "one" \count
  \new Lyrics \lyricsto "one" \sticking
  \new Lyrics \lyricsto "one" \stickingII
>>
}

HTH,
  Harm

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


Re: "Floating" markup

2013-10-15 Thread James Worlton
On Tue, Oct 15, 2013 at 3:16 PM, Jim Long  wrote:

> On Tue, Oct 15, 2013 at 09:04:13AM -0500, James Worlton wrote:
> >
> > This solution is also kind of hacky, but it looks like it may do more or
> > less what you want. It also scales pretty well to other staff sizes. I'm
> > not sure how to slide the staff names to the right, however:
>
> This slides the instrument name to the right and slightly up:
>
> ...
>   \new Staff ="staff" \with {
> \remove Time_signature_engraver
> \override InstrumentName.X-offset = #-4
> \override InstrumentName.Y-offset = #1
> instrumentName = \markup { \vspace #1.5
>   \center-column { \italic "Count:"
>\vspace #2
>\line { \italic "Sticking:" }
>   }
> }
>   }
>
>
Or if you're on 2.16, the syntax is \override InstrumentName #'X-offset =
#-4 etc.
Thanks for this. I should have delved more deeply into InstrumentName
attributes.

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


Re: "Floating" markup

2013-10-15 Thread Jim Long
On Tue, Oct 15, 2013 at 09:04:13AM -0500, James Worlton wrote:
> 
> This solution is also kind of hacky, but it looks like it may do more or
> less what you want. It also scales pretty well to other staff sizes. I'm
> not sure how to slide the staff names to the right, however:

This slides the instrument name to the right and slightly up:

...
  \new Staff ="staff" \with {
\remove Time_signature_engraver
\override InstrumentName.X-offset = #-4
\override InstrumentName.Y-offset = #1
instrumentName = \markup { \vspace #1.5
  \center-column { \italic "Count:"
   \vspace #2
   \line { \italic "Sticking:" }
  }
}
  }
...

It may seem odd that an X-offset of -4 means "slide it to the
right," but working in conjecture mode again, I presume that the
original value of this instance of InstrumentName.X-offset was a
negative number less than -4, so by comparison, -4 *is* to the
right of the original, calculated X-offset value.  I tried a value
of 0, and that was much too far to the right.

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


Re: "Floating" markup

2013-10-15 Thread James Worlton
On Tue, Oct 15, 2013 at 8:34 AM, EdBeesley  wrote:

> I'm trying to make some easy to read exercises for the little kiddies I
> teach. As you can see in the example below I've labelled which line is for
> sticking and which is for counting - the only way I could figure out of
> getting the markup before any notes was to add it to a spacer grace note
> (so
> as to not affect duration) but as you can see this creates a huge gap.
> Switching on strict-note-spacing solves the gap but then pushes the text
> very far to the left, and all my attempts at tweaking x-offsets or
> \translates haven't worked. Also ideally I'd like to vertically align the
> "Sticking" text so it's centred relative to the two lyric lines.
>
> Does anyone have a better idea for getting what I'm after? I'm feeling the
> grace note markup is very hacky but I can't think of a better way!
>
> # (set-global-staff-size 30) % yep, 30!
>
>  count = \lyricmode {
>"1" "2" "3" "4"
>   }
>
> \score {
> <<
>   \new Staff ="staff" \with {\remove Time_signature_engraver} {
> \new Voice ="one"
> {
>   \clef percussion
>   %\override Score.SpacingSpanner #'strict-note-spacing = ##t
>\override NoteHead #'extra-spacing-width = #'(3 . 3)
>\grace {s64 ^\markup \right-align \italic {Count:}  _\markup
> \right-align \italic {Sticking:}}
>d'4 d' d' d' d' d' d' d' }
>   }
> \new Lyrics \with { alignAboveContext = "staff" } { \lyricsto "one"
> {\count \count} }
> \new Lyrics {\lyricsto "one" {R L R L R L R L }}
> \new Lyrics {\lyricsto "one" { L R L R L R L R }}
> >>
>   }
>

This solution is also kind of hacky, but it looks like it may do more or
less what you want. It also scales pretty well to other staff sizes. I'm
not sure how to slide the staff names to the right, however:

\version "2.17.28" %also works in 2.16.1
# (set-global-staff-size 30) % yep, 30!

 count = \lyricmode {
   "1" "2" "3" "4"
  }

\score {
<<
  \new Staff ="staff" \with {
\remove Time_signature_engraver
instrumentName = \markup { \vspace #1.5
  \center-column { \italic "Count:"
   \vspace #2
   \line { \italic "Sticking:" }
  }
}
  }
  { \new Voice ="one"
{  \clef percussion
   d'4 d' d' d' d' d' d' d'
}
  }
  \new Lyrics \with { alignAboveContext = "staff" }
{ \lyricsto "one" {\count \count} }
  \new Lyrics {\lyricsto "one" {R L R L R L R L }}
  \new Lyrics {\lyricsto "one" { L R L R L R L R }}
>>
}

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


"Floating" markup

2013-10-15 Thread EdBeesley
I'm trying to make some easy to read exercises for the little kiddies I
teach. As you can see in the example below I've labelled which line is for
sticking and which is for counting - the only way I could figure out of
getting the markup before any notes was to add it to a spacer grace note (so
as to not affect duration) but as you can see this creates a huge gap.
Switching on strict-note-spacing solves the gap but then pushes the text
very far to the left, and all my attempts at tweaking x-offsets or
\translates haven't worked. Also ideally I'd like to vertically align the
"Sticking" text so it's centred relative to the two lyric lines. 

Does anyone have a better idea for getting what I'm after? I'm feeling the
grace note markup is very hacky but I can't think of a better way!

# (set-global-staff-size 30) % yep, 30!

 count = \lyricmode {
   "1" "2" "3" "4"
  }

\score {
<<
  \new Staff ="staff" \with {\remove Time_signature_engraver} {
\new Voice ="one" 
{
  \clef percussion
  %\override Score.SpacingSpanner #'strict-note-spacing = ##t
   \override NoteHead #'extra-spacing-width = #'(3 . 3)
   \grace {s64 ^\markup \right-align \italic {Count:}  _\markup
\right-align \italic {Sticking:}}
   d'4 d' d' d' d' d' d' d' }
  }
\new Lyrics \with { alignAboveContext = "staff" } { \lyricsto "one"
{\count \count} }
\new Lyrics {\lyricsto "one" {R L R L R L R L }}
\new Lyrics {\lyricsto "one" { L R L R L R L R }}
>>  
  }



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Floating-markup-tp152332.html
Sent from the User mailing list archive at Nabble.com.

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


[war...@gmx.de: Re: Floating markup / Markup takes too much space]

2012-03-10 Thread Frank Steinmetzger
Only sent to Phil again yesterday. Now to you all.

On Fri, Mar 09, 2012 at 01:37:50PM -, Phil Holmes wrote:

> Dear list
> 
> I am trying something new; I want to include a logo in my copyright line. I
> have here a one-page sheet consisting of a score and a markup block which
> contains the text for verses 2 to 4.
> 
> Now according to annotate-spacing, I have 11.13pt of space left. The image
> in the screenshot was included with the command
> \epsfile #Y #6 #"inc/filename.eps"
> 
> But even if I increase the image's height from 6 to a mere 7, the markup
> above is pushed to a second page.
> [...]
> There have been a _lot_ of changes in the spacing calculations between the 
> version you're using and current stable, which is 2.14.2.  I suggest trying 
> with 2.14 and letting us know if the problems remain.

Thanks for your answers. I was beginning to fear my questions became either too
specific, too mundane or were dealt with many a time before, so you just
didn't bother. :)

Anyway, The canon of your answers is to upgrade -- and I agree. A version push
request has been in the Gentoo bug tracker for ages now. I added a comment
there that 2.16 is about to come out (as I recently read here).


Back to topic: I built 2.14 from source which was easy thanks to Gentoo's
infrastructure. Indeed I can enlarge the logo nicely with it, and I don't even
have any big side effects, because it is a simple one-page piece. And I really
like the new default vertical spacing, especially concerning lyrics.

Most of my pieces are 2 or more pages, then also including a titlepage.
Converting those will be a bigger endeavour. But I'm looking forward to the
benefits of the improved layout engine.
-- 
Gruß | Greetings | Qapla'
I forbid any use of my email addresses with Facebook services.

What do you call a fly without wings? - A walk.


pgpVuSuXeh6RN.pgp
Description: PGP signature
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Floating markup / Markup takes too much space

2012-03-09 Thread Janek Warchoł
On Fri, Mar 9, 2012 at 2:37 PM, Phil Holmes  wrote:
> There have been a _lot_ of changes in the spacing calculations between the
> version you're using and current stable, which is 2.14.2.  I suggest trying
> with 2.14 and letting us know if the problems remain.

And be sure to read the documentation for the new version,
http://www.lilypond.org/doc/v2.14/Documentation/notation/flexible-vertical-spacing-within-systems
http://www.lilypond.org/doc/v2.14/Documentation/notation/flexible-vertical-spacing-_005cpaper-variables

HTH,
Janek

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


Re: Floating markup / Markup takes too much space

2012-03-09 Thread Phil Holmes
- Original Message - 
From: "Frank Steinmetzger" 

To: 
Sent: Thursday, March 08, 2012 5:16 PM
Subject: Floating markup / Markup takes too much space


Dear list

I am trying something new; I want to include a logo in my copyright line. I
have here a one-page sheet consisting of a score and a markup block which
contains the text for verses 2 to 4.

Now according to annotate-spacing, I have 11.13pt of space left. The image 
in

the screenshot was included with the command
\epsfile #Y #6 #"inc/filename.eps"

But even if I increase the image's height from 6 to a mere 7, the markup 
above

is pushed to a second page. Can you please explain to me why that is and,
ideally, how I can get around that?

For future projects, where I don't have so much space left -- like multipage
scores with a constant number of systems per page -- I think it would be 
best

if I could make the image take up no additional vertical space at all, i.e.
make it float above all other elements.

My version is 2.12.3.



There have been a _lot_ of changes in the spacing calculations between the 
version you're using and current stable, which is 2.14.2.  I suggest trying 
with 2.14 and letting us know if the problems remain.


--
Phil Holmes



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


Re: Floating markup / Markup takes too much space

2012-03-09 Thread Jan-Peter Voigt

Hello Frank,

the vertical spacing is always a difficult thing. First I would 
recommend to upgrade to the latest stable version 2.14 or better 2.15.33 
(next stable 2.16 is almost finished) - there has been significant and 
improving changes to vertical spacing.


But to get a little hint quickly:
you might try
1.:
\paper {
page-count = 1
}

2.:
\epsfile #Y #5 #"inc/filename.eps"
it should be smaller, shouldn't it?

3.:
\paper {
bottom-margin = 9\mm %(smaller than before)
}

HTH

Cheers,
Jan-Peter


On 09.03.2012 13:49, Frank Steinmetzger wrote:

On Thu, Mar 08, 2012 at 06:16:15PM +0100, Frank Steinmetzger wrote:

Dear list
[...]
Now according to annotate-spacing, I have 11.13pt of space left. The image in
the screenshot's copyright line was included with the command
\epsfile #Y #6 #"inc/filename.eps"

But even if I increase the image's height from 6 to a mere 7, the markup above
is pushed to a second page. Can you please explain to me why that is and,
ideally, how I can get around that?

Pushing... sorry if I seem impatient, I was hoping to solve this today, and my
last few questions remained unanswered, so I hope I still get through to you
at all.


___
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: Floating markup / Markup takes too much space

2012-03-09 Thread Marek Klein
Hello,

2012/3/9 Frank Steinmetzger 

> On Thu, Mar 08, 2012 at 06:16:15PM +0100, Frank Steinmetzger wrote:
> > Dear list
> > [...]
> > Now according to annotate-spacing, I have 11.13pt of space left. The
> image in
> > the screenshot's copyright line was included with the command
> > \epsfile #Y #6 #"inc/filename.eps"
> >
> > But even if I increase the image's height from 6 to a mere 7, the markup
> above
> > is pushed to a second page. Can you please explain to me why that is and,
> > ideally, how I can get around that?
>
> Pushing... sorry if I seem impatient, I was hoping to solve this today,
> and my
> last few questions remained unanswered, so I hope I still get through to
> you
> at all.


I can not help you directly, but I would try it with latest stable
version...
HTH

Marek Klein
http://gregoriana.sk
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Floating markup / Markup takes too much space

2012-03-09 Thread Francisco Vila
2012/3/9 Frank Steinmetzger :
> On Thu, Mar 08, 2012 at 06:16:15PM +0100, Frank Steinmetzger wrote:
>> Dear list
>> [...]
>> Now according to annotate-spacing, I have 11.13pt of space left. The image in
>> the screenshot's copyright line was included with the command
>> \epsfile #Y #6 #"inc/filename.eps"
>>
>> But even if I increase the image's height from 6 to a mere 7, the markup 
>> above
>> is pushed to a second page. Can you please explain to me why that is and,
>> ideally, how I can get around that?
>
> Pushing... sorry if I seem impatient, I was hoping to solve this today, and my
> last few questions remained unanswered, so I hope I still get through to you
> at all.

For logos you want them not to occupy space at all, I'd recommend the
background command of pdftk toolkit which inserts a watermark.
http://www.pdflabs.com/docs/pdftk-man-page/

-- 
Francisco Vila. Badajoz (Spain)
www.paconet.org , www.csmbadajoz.com

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


Re: Floating markup / Markup takes too much space

2012-03-09 Thread Frank Steinmetzger
On Thu, Mar 08, 2012 at 06:16:15PM +0100, Frank Steinmetzger wrote:
> Dear list
> [...] 
> Now according to annotate-spacing, I have 11.13pt of space left. The image in
> the screenshot's copyright line was included with the command
> \epsfile #Y #6 #"inc/filename.eps"
> 
> But even if I increase the image's height from 6 to a mere 7, the markup above
> is pushed to a second page. Can you please explain to me why that is and,
> ideally, how I can get around that?

Pushing... sorry if I seem impatient, I was hoping to solve this today, and my
last few questions remained unanswered, so I hope I still get through to you
at all.
-- 
Gruß | Greetings | Qapla'
The situation is hopeless, but not serious.


pgppVH3f07RKI.pgp
Description: PGP signature
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Floating markup / Markup takes too much space

2012-03-08 Thread Frank Steinmetzger
Dear list

I am trying something new; I want to include a logo in my copyright line. I
have here a one-page sheet consisting of a score and a markup block which
contains the text for verses 2 to 4.

Now according to annotate-spacing, I have 11.13pt of space left. The image in
the screenshot was included with the command
\epsfile #Y #6 #"inc/filename.eps"

But even if I increase the image's height from 6 to a mere 7, the markup above
is pushed to a second page. Can you please explain to me why that is and,
ideally, how I can get around that?

For future projects, where I don't have so much space left -- like multipage
scores with a constant number of systems per page -- I think it would be best
if I could make the image take up no additional vertical space at all, i.e.
make it float above all other elements.

My version is 2.12.3.
-- 
Gruß | Greetings | Qapla'
I forbid any use of my email addresses with Facebook services.

Electrical parts work with smoke.
If the smoke comes out, the parts don’t work anymore.
<>

pgpzT6MPo7X2b.pgp
Description: PGP signature
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Fwd: Re: a "floating" markup with many \score blocks in it

2009-01-07 Thread -Eluze

Excellent!
Thanks!

Eluze

-- 
View this message in context: 
http://www.nabble.com/Fwd%3A-Re%3A-a-%22floating%22-markup-with-many-%5Cscore-blocks-in-it-tp21329239p21337485.html
Sent from the Gnu - Lilypond - User mailing list archive at Nabble.com.



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


Fwd: Re: a "floating" markup with many \score blocks in it

2009-01-07 Thread Jan van Dijk
This email was supposed to be send directly to the usergroup, so here it is.

Op Tuesday 06 January 2009 16:52:13 schreef u:
> ... I just feel stupid and dis-imaginative
>
> @ j.w.vand...@planet.nl could you tell us the input code of result?
> I would maybe be comforted ;-)
>
> Thanks to all
>
> Francois

I should have send the inputcode the first time.

In this example I use two scores on the same line.
This should be possible with a construct like 
\markup { \line { \score { ...} \score {...} } }

But above every score I also have to put a markup.
I was only able to do this by using:
\markup {
   \line {
  \column { \line { ...} \score {...} } 
  \column { \line { ...} \score {...} }
   }
}

To put some space between the two columns I used the command:
\translate #'(10 . 0)

About the layout:
I mostly do not use a time signature, nor the metronomemark.
One copy of the music is in front of a (very small) choir, so I need a rather 
large font.
To have both scores properly aligned I had to use the command:
\override VerticalAxisGroup #'minimum-Y-extent = #'(-5.8 . 5.8)

Good luck with your struggling.
Jan van Dijk.
\version "2.11.62"

#(set-global-staff-size 23)
global = { \key e \minor
\set Score.timing = ##f
\autoBeamOff
}

\layout {
   indent = 0.0
   textwidth = 170 \mm
   headsep = 0 \mm
   pagenumber = no
   ragged-last = ##t
   \context {
  \Staff
  \remove "Time_signature_engraver"
  \override VerticalAxisGroup #'minimum-Y-extent = #'(-5.8 . 5.8)
   }
   \context {
  \Score
  \override BarNumber #'transparent = ##t
  \remove Metronome_mark_engraver
   }
   \context {
  \Lyrics
  \override LyricSpace #'minimum-distance = #2.0
  \override LyricText #'font-size = #4
  \override LyricText #'font-name = #"Vera"
   }
}

\markup {
%% Eerste Amen
   \line {
  \column {
 \line { \sans { { \with-color #red {P: } "Neemt, eet, ... " } } }
 \score {
\context ChoirStaff
<<
   \context Staff = women
   <<
   \context Voice = melodie {
  \tempo 4 = 135
  \global
  \voiceOne
  \relative c' {
 fis1 g
  }
   }
   \context Voice = alt {
  \global
  \voiceTwo
  \relative c' {
 dis1 e \bar "||"
  }
   }
   >>
   \context Lyrics = melodie { s1 }
   \context Staff = men
   <<
   \clef bass
   \context Voice = tenor {
  \global
  \voiceOne
  \relative c' {
 b1 b
  }
   }
   \context Voice = bas {
  \global
  \voiceTwo
  \relative c {
 b1 e
  }
   }
   >>
   \context Lyrics = melodie \lyricsto melodie \lyricmode {
   A -- men.
   }
>>
\layout { }
 }
  }
  \translate #'(10 . 0)
  \column {
 \line { \sans { { \with-color #red {P: } "Drinkt allen ... " } } }
 \score {
\context ChoirStaff
<<
   \context Staff = women
   <<
   \context Voice = melodie {
  \once \override Score.MetronomeMark #'transparent = ##t
  \tempo 4 = 135
  \global
  \voiceOne
  \relative c'' {
 b2( a4 b c b8[ c] d4 c) b1
  }
   }
   \context Voice = alt {
  \global
  \voiceTwo
  \relative c'' {
 g2( fis4 g a g8[ a] b4 a) g1 \bar "||"
  }
   }
   >>
   \context Lyrics = melodie { s1 }
   \context Staff = men
   <<
   \clef bass
   \context Voice = tenor {
  \global
  \voiceOne
  \relative c' {
 d1( d) d1
  }
   }
   \context Voice = bas {
  \global
  \voiceTwo
  \relative c' {
 g2( d d1) g1
  }
   }
   >>
   \context Lyrics = melodie \lyricsto melodie \lyricmode {
   A -- men.
   }
>>
\layout { }
\midi { }
 }
  }
   }
}
___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: a "floating" markup with many \score blocks in it

2009-01-06 Thread Francois Planiol
... I just feel stupid and dis-imaginative

@ j.w.vand...@planet.nl could you tell us the input code of result?
I would maybe be comforted ;-)

Thanks to all

Francois

Am Montag, 5. Januar 2009 23:50 schrieb James E. Bailey:
> > The problem with stopping and restarting a staff(group) is the fact
> > that
> > restarting the staff will not restart the entire score.
> > The documentation didn´t help me, but the suggestion to put the
> > scores in a
> > markup did help me.
>
> I find that a lot of problems with lilypond output require
> imaginative ways of thinking around the problem. It really helps to
> remember all of the different ways there are to lay objects out on
> the page. And to remember that in the end effect, they are all just
> objects with definitions about where on the page they should be put.
>
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> http://lists.gnu.org/mailman/listinfo/lilypond-user


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


Re: a "floating" markup with many \score blocks in it

2009-01-05 Thread James E. Bailey
The problem with stopping and restarting a staff(group) is the fact  
that

restarting the staff will not restart the entire score.
The documentation didn´t help me, but the suggestion to put the  
scores in a

markup did help me.


I find that a lot of problems with lilypond output require  
imaginative ways of thinking around the problem. It really helps to  
remember all of the different ways there are to lay objects out on  
the page. And to remember that in the end effect, they are all just  
objects with definitions about where on the page they should be put.


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


Re: a "floating" markup with many \score blocks in it

2009-01-04 Thread Kieren MacMillan

Hi Francois,


By me, the result is: see the first 1/2-page of file.
I need to have: see the 2nd 1/2-page (done with oodraw, not with  
lilypond of

course)


Look for \startStaff and \stopStaff in the documentation and list  
archive.


HTH!
Kieren.


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


Re: a "floating" markup with many \score blocks in it

2009-01-04 Thread Trevor Daniels


Francois

The suggestion works as you want it in 2.12.1.  What version are you using?

You may need to set ragged-right = ##t in 2.10 or early versions of 2.11:

\layout {
 ragged-right = ##t
}

in every \score block.

Trevor

- Original Message - 
From: "Francois Planiol" 

To: 
Sent: Sunday, January 04, 2009 9:31 PM
Subject: Re: a "floating" markup with many \score blocks in it


Hello Mr Bailey and thanks.

By me, the result is: see the first 1/2-page of file.
I need to have: see the 2nd 1/2-page (done with oodraw, not with lilypond of
course)

Thanks again, in advance

Francois

Am Sonntag, 4. Januar 2009 16:39 schrieben Sie:

music = \relative c' { c d e f }
\markuplines \wordwrap-lines {
\score { \music \layout {} }
\score { \music \layout {} }
\score { \music \layout {} }
\score { \music \layout {} }
\score { \music \layout {} }
\score { \music \layout {} }
\score { \music \layout {} }
\score { \music \layout {} }
\score { \music \layout {} }
\score { \music \layout {} }
\score { \music \layout {} }
\score { \music \layout {} }
\score { \music \layout {} }
\score { \music \layout {} }
\score { \music \layout {} }
\score { \music \layout {} }
\score { \music \layout {} }
\score { \music \layout {} }
\score { \music \layout {} }
\score { \music \layout {} }
\score { \music \layout {} }
\score { \music \layout {} }
\score { \music \layout {} }
\score { \music \layout {} }
}


---







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





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


Re: a "floating" markup with many \score blocks in it

2009-01-04 Thread Francois Planiol
Hello Mr Bailey and thanks.

By me, the result is: see the first 1/2-page of file.
I need to have: see the 2nd 1/2-page (done with oodraw, not with lilypond of
course)

Thanks again, in advance

Francois

Am Sonntag, 4. Januar 2009 16:39 schrieben Sie:
> music = \relative c' { c d e f }
> \markuplines \wordwrap-lines {
>     \score { \music \layout {} }
>     \score { \music \layout {} }
>     \score { \music \layout {} }
>     \score { \music \layout {} }
>     \score { \music \layout {} }
>     \score { \music \layout {} }
>     \score { \music \layout {} }
>     \score { \music \layout {} }
>     \score { \music \layout {} }
>     \score { \music \layout {} }
>     \score { \music \layout {} }
>     \score { \music \layout {} }
>     \score { \music \layout {} }
>     \score { \music \layout {} }
>     \score { \music \layout {} }
>     \score { \music \layout {} }
>     \score { \music \layout {} }
>     \score { \music \layout {} }
>     \score { \music \layout {} }
>     \score { \music \layout {} }
>     \score { \music \layout {} }
>     \score { \music \layout {} }
>     \score { \music \layout {} }
>     \score { \music \layout {} }
> }

---


scoreBlocksInOneLine.pdf
Description: Adobe PDF document
___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: a "floating" markup with many \score blocks in it

2009-01-04 Thread James E. Bailey


Am 04.01.2009 um 15:43 schrieb Francois Planiol:


Hello!

I need for a kind of Summary of "Different way to harmonize a  
melodie" a
command of markup, I suppose. If it does exist, i dont find it or  
how and be

very pleased for having help

My idea would be something like

\markup \floating { % to wrap the scores ...
\score { ... } % T-S-D
\score { ... } % Cantional
\score { ... } % With secondary dominant
\score { ... } % 5-Voices
\score { ... } % melody in bass
\score { ... } % melody in alt with figured descant
\score { ... } % chromatic bass
\score { ... } % mixture-sounds
\score { ... } % Messiaen-mode-2
\score { ... } % polytonal
}

... which would fill (f.e.) a page (or more or less, and of course on
different pages if required) with the snippets, beginning up left  
on the
page, going forward line by line to right down for the last  
fragment. And of

course with the layout according to the length of the fragment. (some
examples may be 4-5 measures length, other 3-4 notes)

I suppose the decision of ragged-last-bottom to be defined in the  
paper-block.


So the result layout f.e.

T-S-D - Cantional - With secondary dominant
5-Voices - - - - - - - - - melody in bass - - - - - - -
melody in alt  - - - - - with figured descant - - -
chromatic bass - - - - - - mixture-sounds - - - - -
Messiaen-mode-2 - - - polytonal - - - - - - - - - - -

Thanks in advance from


I don't know if I completely understand what you want, but maybe  
\markuplines, or more specifically \wordwrap-lines will do what  
you're looking for?


version "2.11.65"

music = \relative c' { c d e f }
\markuplines \wordwrap-lines {
   \score { \music \layout {} }
   \score { \music \layout {} }
   \score { \music \layout {} }
   \score { \music \layout {} }
   \score { \music \layout {} }
   \score { \music \layout {} }
   \score { \music \layout {} }
   \score { \music \layout {} }
   \score { \music \layout {} }
   \score { \music \layout {} }
   \score { \music \layout {} }
   \score { \music \layout {} }
   \score { \music \layout {} }
   \score { \music \layout {} }
   \score { \music \layout {} }
   \score { \music \layout {} }
   \score { \music \layout {} }
   \score { \music \layout {} }
   \score { \music \layout {} }
   \score { \music \layout {} }
   \score { \music \layout {} }
   \score { \music \layout {} }
   \score { \music \layout {} }
   \score { \music \layout {} }
}



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


a "floating" markup with many \score blocks in it

2009-01-04 Thread Francois Planiol
Hello!

I need for a kind of Summary of "Different way to harmonize a melodie" a 
command of markup, I suppose. If it does exist, i dont find it or how and be 
very pleased for having help

My idea would be something like

\markup \floating { % to wrap the scores ...
\score { ... } % T-S-D
\score { ... } % Cantional
\score { ... } % With secondary dominant
\score { ... } % 5-Voices
\score { ... } % melody in bass
\score { ... } % melody in alt with figured descant
\score { ... } % chromatic bass
\score { ... } % mixture-sounds
\score { ... } % Messiaen-mode-2
\score { ... } % polytonal
}

... which would fill (f.e.) a page (or more or less, and of course on 
different pages if required) with the snippets, beginning up left on the 
page, going forward line by line to right down for the last fragment. And of 
course with the layout according to the length of the fragment. (some 
examples may be 4-5 measures length, other 3-4 notes)

I suppose the decision of ragged-last-bottom to be defined in the paper-block.

So the result layout f.e.

T-S-D - Cantional - With secondary dominant
5-Voices - - - - - - - - - melody in bass - - - - - - -
melody in alt  - - - - - with figured descant - - -
chromatic bass - - - - - - mixture-sounds - - - - -
Messiaen-mode-2 - - - polytonal - - - - - - - - - - -

Thanks in advance from

Francois Planiol


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