Re:Front pages

2018-02-14 Thread Flaming Hakama by Elaine
> From: Caio Barros 
> To: Mark Austin 
> Subject: Re: Front pages
> Hey Mark,
>
> Is there a way of adding a front page with graphics, title etc to a
>> Lilypond book, with the numbering starting at 1 on the first other
>> book page?
>
>

With one title page, you can get the first page of music to be page #1
using:

\paper {
first-page-number = #0
}


HTH,

David Elaine Alt
415 . 341 .4954   "*Confusion is
highly underrated*"
ela...@flaminghakama.com
skype: flaming_hakama
Producer ~ Composer ~ Instrumentalist
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Horizontally centered notes

2018-02-14 Thread Kieren MacMillan
Hi Caio,

> It is a bit strange that there is no method (that I know of) to write 
> centralized notes

#(define center-column
   (lambda (col)
 (let* ((left-col (ly:grob-object col 'left-neighbor))
(right-col (ly:grob-object col 'right-neighbor))
; If a column adjoining our column is a PaperColumn, ours
; is not alone in the measure.  We make no adjustments.
(alone?
 (and (eq? #t (ly:grob-property left-col 'non-musical))
  (eq? #t (ly:grob-property right-col 'non-musical)
   (if alone?
   (let* ((elts-list
   (ly:grob-array->list (ly:grob-object col 'elements)))
  (note-cols
   (filter
(lambda (elt)
  (grob::has-interface elt 'note-column-interface))
elts-list))
  (all-rests
   (map (lambda (c)
  (ly:grob-object c 'rest))
 note-cols))
  (all-rests (filter ly:grob? all-rests))
  (all-notes
   (map
(lambda (c)
  (ly:grob-object c 'note-heads))
note-cols))
  (all
   (map (lambda (ga)
  (if (ly:grob-array? ga)
  (ly:grob-array->list ga)
  '()))
 all-notes))
  (all (flatten-list all))
  (all (append all all-rests))
  (same-dur?
   (every (lambda (o)
(equal?
 (ly:grob-property o 'duration-log)
 (ly:grob-property (car all)
   'duration-log)))
 all)))
 (if same-dur?
 (let* ((sys (ly:grob-system col))
(col-center (interval-center
 (ly:grob-extent col sys X)))
(left-right-X
 (cdr (ly:grob-extent left-col sys X)))
(right-left-X
 (car (ly:grob-extent right-col sys X)))
(middle-X
 (- (average left-right-X right-left-X)
   col-center)))
   (ly:grob-translate-axis! col middle-X X

centerSolitaryPaperColumn =
  \override Score.PaperColumn.after-line-breaking = #center-column

Hope that helps!
Kieren.


Kieren MacMillan, composer
‣ website: www.kierenmacmillan.info
‣ email: i...@kierenmacmillan.info


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


Re: Horizontally centered notes

2018-02-14 Thread Caio Barros
>
> It's not optimal, since I have to judge the "centralization" by eye, but
> at least I can get a satisfactory output.
>

Well, now that I tried another example with 5 notes that method didn't
work. The solution was to use \override NoteColumn.X-offset. It is a bit
strange that there is no method (that I know of) to write centralized
notes, since it is a relatively common thing in 18th century engravings.
See, for instance this engraving of Beethoven's String Quartet N. 1
attached.

music = \relative {
\override NoteColumn.X-offset = #'8.3
  c'2 d e f g
}

\score {
\new Staff {
  \time 5/2
  \clef "baritone^8" \music
}
  \layout{
\context {
  \Score
  \omit Clef
  \omit ClefModifier
  \omit Stem
  \omit TimeSignature
  \omit BarLine
  \override StaffSymbol.line-positions = #'(-2 0)
}
ragged-last = ##f
  }
}
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Horizontally centered notes

2018-02-14 Thread Caio Barros
>
> What about
>
> \version "2.19"
>
> music = \relative {
>   \tweak extra-spacing-width #'(-14 . 5) e'2 f g
> }
>
> \score {
>   \new Staff {
> \time 3/2
> \clef "baritone^8" \music
>   }
>   \layout{
> \context {
>   \Score
>   \omit Clef
>   \omit ClefModifier
>   \omit Stem
>   \omit TimeSignature
>   \omit BarLine
>   \override StaffSymbol.line-positions = #'(0)
>   \override NoteHead.extra-spacing-width = #'(-5 . 5)
> }
> ragged-last = ##f
>   }
> }
>
>
That helps, yes. It's not optimal, since I have to judge the
"centralization" by eye, but at least I can get a satisfactory output.
I also didn't know about \omit yet. Nice!

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


Re: Backing track creation with LilyPond

2018-02-14 Thread Henning Hraban Ramm
Cat discussions never get old...
We’ve 4 cats in our (very big) house; they pee everywhere :(
We had problems with mice and rats while there was only the old tomcat. Then we 
called an exterminator and got three young female cats (who harass the tomcat). 
At least two of them are hunting, one is too stupid... But there are still some 
rodents in the ceiling in the older part of the house.

Greetlings, Hraban
---
fiëé visuëlle
Henning Hraban Ramm
http://www.fiee.net




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


Re: Front pages

2018-02-14 Thread Caio Barros
>
> Why not use custom header fields?
>

Well, for once, If I don't use custom fields I don't have to retype the
title of the piece (once for the cover and again for the actual header of
the score). This avoids spelling mistakes, etc. But I believe I tried
something like \fromproperty before and got some other errors too. I need
to test this a little bit further to see If I can recreate the problem.
Right now I can't do it, but I'll get back on that later.
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Backing track creation with LilyPond

2018-02-14 Thread Hans Åberg


> On 14 Feb 2018, at 18:01, David Kastrup  wrote:
> 
>> This is for house cats. It may be different for farmer cats.
> 
> Well, there is no reason to keep them from hunting.  Cats are allowed to
> kill and eat mice.  Humans aren't.
> 
> I don't make the rules.

In Africa, rodents are sold grilled on skewers.



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


Re: Backing track creation with LilyPond

2018-02-14 Thread David Kastrup
Hans Åberg  writes:

>> On 14 Feb 2018, at 17:15, David Kastrup  wrote:
>> 
>> Hans Åberg  writes:
>> 
>>> They don't hunt much if properly fed, just some for sport.
>> 
>> There is no such thing as a "properly fed" cat.  Not if you ask the cat.
>
> If you want them to hunt less, give them more food.
>
>> There is also quite a difference in approach: the male cat really starts
>> getting more enthusiastic once its prey is dead and playing football
>> with the corpse for hours until eating it is no longer a viable option.
>> The female one plays until its prey is dead, then gulfs it down.  All of
>> it.  Except possibly the stomach.  Ugh.
>
> Try to give them herring, cut in slices.
>
>> So one can't really generalize regarding the sports approach.
>
> This is for house cats. It may be different for farmer cats.

Well, there is no reason to keep them from hunting.  Cats are allowed to
kill and eat mice.  Humans aren't.

I don't make the rules.

-- 
David Kastrup

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


Re: Backing track creation with LilyPond

2018-02-14 Thread Hans Åberg


> On 14 Feb 2018, at 17:15, David Kastrup  wrote:
> 
> Hans Åberg  writes:
> 
>>> On 14 Feb 2018, at 15:23, Karlin High  wrote:
>>> 
>>> http://www.laweekly.com/news/instead-of-being-put-down-these-feral-cats-are-being-put-to-work-8963106
>>> 
>>> 
>>> 
>>> Cats are a natural rodent deterrent, even if they're not actively
>>> hunting. Mice can smell urinary proteins secreted by cats, snakes
>>> and other predators. According to a 2010 study at the Scripps
>>> Research Institute, mice don't recognize predators because of
>>> experiences with them but because they have evolved to do so. The
>>> mere scent of the urinary proteins found in cats triggers a fear
>>> response in mice.
>>> 
>>> "It's not like they're even going after the rodents," Sathe says of
>>> the cats. "They're kind of like a sonic force."
>>> 
>>> 
>> 
>> They don't hunt much if properly fed, just some for sport.
> 
> There is no such thing as a "properly fed" cat.  Not if you ask the cat.

If you want them to hunt less, give them more food.

> There is also quite a difference in approach: the male cat really starts
> getting more enthusiastic once its prey is dead and playing football
> with the corpse for hours until eating it is no longer a viable option.
> The female one plays until its prey is dead, then gulfs it down.  All of
> it.  Except possibly the stomach.  Ugh.

Try to give them herring, cut in slices.

> So one can't really generalize regarding the sports approach.

This is for house cats. It may be different for farmer cats.



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


Re: Horizontally centered notes

2018-02-14 Thread Kieren MacMillan
Hi Caio,

What about

\version "2.19"

music = \relative {
  \tweak extra-spacing-width #'(-14 . 5) e'2 f g
}

\score {
  \new Staff {
\time 3/2
\clef "baritone^8" \music
  }
  \layout{
\context {
  \Score
  \omit Clef
  \omit ClefModifier
  \omit Stem
  \omit TimeSignature
  \omit BarLine
  \override StaffSymbol.line-positions = #'(0)
  \override NoteHead.extra-spacing-width = #'(-5 . 5)
}
ragged-last = ##f
  }
}

Hope this helps,
Kieren.


Kieren MacMillan, composer
‣ website: www.kierenmacmillan.info
‣ email: i...@kierenmacmillan.info


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


Re: MetronomeMark.break-align-symbols not heeded in custom context

2018-02-14 Thread Simon Albrecht

On 14.02.2018 17:17, Kieren MacMillan wrote:

\consists "Time_signature_engraver"
 \omit TimeSignature


Of course. Sorry for going to the bug list too soon.

Best, Simon

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


Re: MetronomeMark.break-align-symbols not heeded in custom context

2018-02-14 Thread Kieren MacMillan
Hi Simon,

This is why my ScoreMarks line looks like this:

  \context {
\type "Engraver_group"
\name ScoreMarks
markFormatter = #format-mark-box-alphabet
\consists "Axis_group_engraver"
\override VerticalAxisGroup.staff-affinity = #DOWN
\consists "Metronome_mark_engraver"
\override MetronomeMark.outside-staff-priority = #50
\override MetronomeMark.break-align-symbols =
  #'(left-edge staff-bar clef time-signature key-signature)
\override MetronomeMark.non-break-align-symbols =
  #'(paper-column-interface)
\consists "Mark_engraver"
\override RehearsalMark.outside-staff-priority = #100
\override RehearsalMark.break-align-symbols =
  #'(left-edge staff-bar clef time-signature key-signature)
\override RehearsalMark.self-alignment-X = #CENTER
\override RehearsalMark.extra-spacing-width = #'(-0.5 . 0.5)
\consists "Text_spanner_engraver"
\override TextSpanner.font-size = #2
\consists "Time_signature_engraver"
\omit TimeSignature
  }

Perhaps there's a better way of solving the problem, but this one works for me.

Hope that helps!
Kieren.


Kieren MacMillan, composer
‣ website: www.kierenmacmillan.info
‣ email: i...@kierenmacmillan.info


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


Re: Front pages

2018-02-14 Thread Kieren MacMillan
Hi Caio,

> What I normally do is to create a "cover.ly" file with all the elements I 
> need (title, composer, graphics, etc.), and then, in a separate file, I 
> organize the music inside \bookpart blocks. This avoids that lilypond prints 
> the default  header

Why not use custom header fields?

  \header {
cover-title = "MY COVER TITLE"
title = "My Regular Title"
  }

and then reference \fromproperty #'header:cover-title (etc.) as needed?

Hope this helps!
Kieren.


Kieren MacMillan, composer
‣ website: www.kierenmacmillan.info
‣ email: i...@kierenmacmillan.info


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


Re: Backing track creation with LilyPond

2018-02-14 Thread David Kastrup
Hans Åberg  writes:

>> On 14 Feb 2018, at 15:23, Karlin High  wrote:
>> 
>> http://www.laweekly.com/news/instead-of-being-put-down-these-feral-cats-are-being-put-to-work-8963106
>> 
>> 
>> 
>> Cats are a natural rodent deterrent, even if they're not actively
>> hunting. Mice can smell urinary proteins secreted by cats, snakes
>> and other predators. According to a 2010 study at the Scripps
>> Research Institute, mice don't recognize predators because of
>> experiences with them but because they have evolved to do so. The
>> mere scent of the urinary proteins found in cats triggers a fear
>> response in mice.
>> 
>> "It's not like they're even going after the rodents," Sathe says of
>> the cats. "They're kind of like a sonic force."
>> 
>> 
>
> They don't hunt much if properly fed, just some for sport.

There is no such thing as a "properly fed" cat.  Not if you ask the cat.
There is also quite a difference in approach: the male cat really starts
getting more enthusiastic once its prey is dead and playing football
with the corpse for hours until eating it is no longer a viable option.
The female one plays until its prey is dead, then gulfs it down.  All of
it.  Except possibly the stomach.  Ugh.

So one can't really generalize regarding the sports approach.

-- 
David Kastrup

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


Re: Backing track creation with LilyPond

2018-02-14 Thread David Kastrup
Karlin High  writes:

> On 2/14/2018 4:34 AM, David Kastrup wrote:
>> The mice were running around openly and rather visibly before that.
>> Already when the cats were confined to one stable cell, the difference
>> was staggering.  When they roamed freely, it was overwhelming.  They
>> couldn't have caught hundreds of mice in that time frame: it's just that
>> the visibility of the rodents dropped by wagonloads.
>
> http://www.laweekly.com/news/instead-of-being-put-down-these-feral-cats-are-being-put-to-work-8963106
>
> 
>
> Cats are a natural rodent deterrent, even if they're not actively
> hunting. Mice can smell urinary proteins secreted by cats, snakes and
> other predators. According to a 2010 study at the Scripps Research
> Institute, mice don't recognize predators because of experiences with
> them but because they have evolved to do so. The mere scent of the
> urinary proteins found in cats triggers a fear response in mice.
>
> "It's not like they're even going after the rodents," Sathe says of
> the cats. "They're kind of like a sonic force."
>
> 

Well, I can attest to that.  Probably wasn't helpful that the previous
cat was house-broken to a degree that it always came back _in_ for its
cat box.  Though once the horrible, horrible kittens were roaming the
premises, he did no longer venture outside at all.

First time the female kitten paraded before the patio door, the big cat
easily three times its size panicked and did a running start like from a
Warner Bro's cartoon with wild sliding on the spot, hitting several
table legs like a pinball game ball, then rushing up the staircase and
ducking down at its top, peeking down trembling.

Pathetic.  The roommate moved in with her boyfriend who has an old
tomcat and several dogs.  Apparently now her cat is dominating over the
whole household and feared by cat and dogs alike.  But at our place, it
was completely hopeless.

-- 
David Kastrup

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


MetronomeMark.break-align-symbols not heeded in custom context

2018-02-14 Thread Simon Albrecht

Hi Peter, hello bug-list,

I distilled the example some more:

%
\version "2.19.80"

\layout {
  \context {
    \name "MarkLine"
    \type "Engraver_group"
    \consists Output_property_engraver
    \consists Axis_group_engraver
    \consists Metronome_mark_engraver
    \override MetronomeMark.break-align-symbols = #'(time-signature)
    \override VerticalAxisGroup.staff-staff-spacing =
    #'((basic-distance . 0)
   (minimum-distance . 0)
   (padding . 1)
   (stretchability . 3))
    \override MetronomeMark.font-shape = #'italic
  }
  \context {
    \Score
    \accepts MarkLine
    %\override MetronomeMark.break-align-symbols = #'()
  }
}

global = \tempo "Largo"

<<
  \new MarkLine \global
  \new Staff << \global { 1 } >>
>>
%
(output attached)

The tempo mark in MarkLine behaves like one in Staff with no 
break-align-symbols (uncomment the override to test). I think they 
should both be aligned to the time signature.
As a perhaps unrelated side note: With that override uncommented, the 
vertical order of the marks is flipped.


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


Re: missing document browser

2018-02-14 Thread Knute Snortum
I have Frescobaldi 3.0.0 on Raspberry PI and it works fine.  For me it
created a tab under the Document Browser.  Maybe upgrade if you can?


---
Knute Snortum
(via Gmail)

On Tue, Feb 13, 2018 at 10:13 AM, Daryls_Produce <
daryls.prod...@protonmail.com> wrote:

> Hi Knute
>
> I use Frescobaldi 2.18.2 with Ubuntu Linux, and launch it by clicking on
> the
> Frescobaldi application icon.
>
> Thanks,
> Phil
>
>
>
> --
> Sent from: http://lilypond.1069038.n5.nabble.com/User-f3.html
>
> ___
> 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: Front pages

2018-02-14 Thread Caio Barros
Hey Mark,

Is there a way of adding a front page with graphics, title etc to a
> Lilypond book, with the numbering starting at 1 on the first other
> book page?



I'm not sure what exactly you want to accomplish here. Where do you want
the numbering to appear? Is your question also about how to create a title
page?

Maybe my approach to that problem can help you. What I normally do is to
create a "cover.ly" file with all the elements I need (title, composer,
graphics, etc.), and then, in a separate file, I organize the music inside
\bookpart blocks. This avoids that lilypond prints the default  header, but
requires a bit caution. For instance:

 cover.ly

\version "2.19.46"

\paper {
bookTitleMarkup = ""
scoreTitleMarkup = ""
  }

 \markup  {
  \vspace #20
  \fill-line {
\fontsize #12 \title }
}

\markup  {
  \vspace #2
  \fill-line {
\fontsize #5 \instrument }
}

\markup  {
  \vspace #5
  \fill-line {
\fontsize #8 \composer }
}

\markup {
  \vspace #3
  \fill-line {
\fontsize #6 \poet }
}

\markup  {
  \vspace #5
  \fill-line {
\fontsize #2 \italic \dedication }
}

\markup {
  \vspace #4
  \fill-line {
\fontsize #4 \date }
}

\pageBreak

 mainfile.ly

\version "2.19.46"

%% Notice we have to add the header elements as variables

title = "My piece"
subtitle = "it has a cover page!"
composer = "Me"
date = "2018"
dedication = "To Mr. Someone"
instrument = "Piano"
poet = ""

\header {
  %% and now we just call the variables we just created
  title = \title
  subtitle = \subtitle
  composer = \composer
  date = \date
  dedication = \dedication
  instrument = \instrument
  arranger = ""
}

\bookpart {
  %\include "cover.ly"
  %{  \markup {}
  \pageBreak
  \paper {
print-page-number = ##f
oddHeaderMarkup = ##f
evenHeaderMarkup = ##f
bookTitleMarkup = ""
scoreTitleMarkup = ""
  %}
}

\paper {
  first-page-number = #0 %this avoids counting the cover as page 1
  #(include-special-characters)
  bottom-margin = 1.5\cm
}

\bookpart {
  \paper {
oddHeaderMarkup = \markup {
  \fill-line {
\on-the-fly \not-part-first-page
\fill-line { \fromproperty #'page:page-number-string \null }
\null
  }
}
evenHeaderMarkup = \markup {
  \fill-line {
\null \fromproperty #'page:page-number-string
  }
}
  }
  \score {
\new Staff {
\relative c'{ c }
}
  }
}

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


Re: More than one tempo mark in a score

2018-02-14 Thread Peter Toye
Simon,

Not all that small, but there's a lot of overrides! Uncommenting the 
commented-out line moves the text back, so the Largo is correct but the Presto 
is wrong.

Best regards,

Peter
mailto:lilyp...@ptoye.com
www.ptoye.com

\version "2.19.52"

\language "english"

global = {
  \tempo "Largo" 4=30
  s1*2
  \mark \default
  s1
  
  \tempo "Presto"
}

foo = \relative c' {
  c4 d e f |
  g f e d |
  c e g b |
  d2 c2 |
}

baz = {
  R1*4
}


\layout {
  \context {
\name "MarkLine"
\type "Engraver_group"
\consists Output_property_engraver
\consists Axis_group_engraver
\consists Mark_engraver
\consists Metronome_mark_engraver
\override RehearsalMark.extra-spacing-width = #'(0 . 1)
\override MetronomeMark.extra-spacing-width = #'(0.5 . 0)
\override VerticalAxisGroup.minimum-Y-extent = #'(-2 . 2)
\override VerticalAxisGroup.staff-staff-spacing =
#'((basic-distance . 0)
   (minimum-distance . 0)
   (padding . 1)
   (stretchability . 3))
%\override MetronomeMark.X-offset = #-5
  }
  \context {
\Score
\remove Mark_engraver
\remove Metronome_mark_engraver
\accepts MarkLine
  }
}


\score {
  <<
\new MarkLine \global
\new Staff << \global \foo >>
  >>
}


-
Wednesday, February 14, 2018, 3:25:17 PM, you wrote:

> On 14.02.2018 13:34, ptoye wrote:
>> the Largo metronome mark is too
>> far to the right as it seems to be aligned to the first silent note rather
>> than the clef or time signature.

> That seems like a bug to me – I think the MetronomeMark should be 
> aligned the same no matter whether it’s in a context of its own or not.
> I suspect it’s also possible to override to which grob it is aligned, 
> but those overrides are complicated… can’t look it up right now.
> Can you give a minimal example?

> Best, Simon___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Horizontally centered notes

2018-02-14 Thread Caio Barros
Hi,

I'm writing some music snippets for a friend that is creating a music text
book, and they want to have and example in which a single musical line
shows three notes: one below the line, one on the line and one above it.

I managed to write almost what they want, except that would be nicer that
the notes were horizontally centered. Lilypond automatically engraves notes
a little bit to the left so that notes more or less reflect their duration,
and I'm having trouble finding a way to override that to have the desired
output:

music = \relative {
 e'2 f g
}

\score{
\new Staff {
\time 3/2
\clef "baritone^8" \music
}

\layout{
\context {
  \Score
  \override Clef.stencil = ##f
  \override ClefModifier.stencil = ##f
  \override Stem.stencil = ##f
  \override TimeSignature.stencil = ##f
  \override BarLine.stencil = ##f
  \override StaffSymbol.line-positions = #'(0)
}
ragged-last = ##f
}
}

I tried proportional notation overrides and even found that multimeasure
rests (which are engraved in the center of the measure) have an attribute
called spacing-pair, so calling \override MultiMeasureRest.spacing-pair =
#'(staff-bar . staff-bar) for instance would align them to the center of
the measure ignoring clefs, time signatures and so on... but this property
is no applicable to note heads...

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


Re: More than one tempo mark in a score

2018-02-14 Thread Simon Albrecht

On 14.02.2018 13:34, ptoye wrote:

the Largo metronome mark is too
far to the right as it seems to be aligned to the first silent note rather
than the clef or time signature.


That seems like a bug to me – I think the MetronomeMark should be 
aligned the same no matter whether it’s in a context of its own or not. 
I suspect it’s also possible to override to which grob it is aligned, 
but those overrides are complicated… can’t look it up right now.

Can you give a minimal example?

Best, Simon

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


Re: Front pages

2018-02-14 Thread Kieren MacMillan
Hi Mark,

> Is there a way of adding a front page with graphics, title etc to a
> Lilypond book, with the numbering starting at 1 on the first other
> book page?

Yes. You can use bookparts to manage this inside Lilypond.

If you're willing to use more than Lilypond, there are several excellent 
options. I personally use a LaTeX template, which imports the Lilypond 
books/scores where appropriate — this gives me excellent typesetting (much 
better than Lilypond offers), while still letting Lilypond do her wonderful 
thing on the music engraving. But that kind of thing may be too much for your 
needs.

Hope this helps!
Kieren.


Kieren MacMillan, composer
‣ website: www.kierenmacmillan.info
‣ email: i...@kierenmacmillan.info


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


Front pages

2018-02-14 Thread Mark Austin
Is there a way of adding a front page with graphics, title etc to a
Lilypond book, with the numbering starting at 1 on the first other
book page?

-- 
Mark Austin

--
For Whigs admit no force but argument
--

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


Re: Backing track creation with LilyPond

2018-02-14 Thread Hans Åberg

> On 14 Feb 2018, at 15:23, Karlin High  wrote:
> 
> On 2/14/2018 4:34 AM, David Kastrup wrote:
>> The mice were running around openly and rather visibly before that.
>> Already when the cats were confined to one stable cell, the difference
>> was staggering.  When they roamed freely, it was overwhelming.  They
>> couldn't have caught hundreds of mice in that time frame: it's just that
>> the visibility of the rodents dropped by wagonloads.
> 
> http://www.laweekly.com/news/instead-of-being-put-down-these-feral-cats-are-being-put-to-work-8963106
> 
> 
> 
> Cats are a natural rodent deterrent, even if they're not actively hunting. 
> Mice can smell urinary proteins secreted by cats, snakes and other predators. 
> According to a 2010 study at the Scripps Research Institute, mice don't 
> recognize predators because of experiences with them but because they have 
> evolved to do so. The mere scent of the urinary proteins found in cats 
> triggers a fear response in mice.
> 
> "It's not like they're even going after the rodents," Sathe says of the cats. 
> "They're kind of like a sonic force."
> 
> 

They don't hunt much if properly fed, just some for sport.



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


Re: Backing track creation with LilyPond

2018-02-14 Thread Hans Åberg


> On 14 Feb 2018, at 15:00, David Kastrup  wrote:
> 
> Hans Åberg  writes:
> 
>> On 14 Feb 2018, at 11:34, David Kastrup  wrote:
>> 
>>> The mice were running around openly and rather visibly before that.
>>> Already when the cats were confined to one stable cell, the difference
>>> was staggering.  When they roamed freely, it was overwhelming.  They
>>> couldn't have caught hundreds of mice in that time frame: it's just that
>>> the visibility of the rodents dropped by wagonloads.  And ultimately
>>> likely also their number, probably more because they did not dare come
>>> looking for food than through actual killings.
>> 
>> Perhaps you might check in some mouse trap channel, e.g.
>>  https://www.youtube.com/watch?v=zTx5y_bufwk
> 
> Need to be live traps because of the lady of the house, and constantly
> baiting them and driving the prisoners off to the other side of the
> canal gets old.

You can choose on that channel.

> Also doesn't put much of a dent in the population.  And
> live traps for rats are hopeless.  You capture about three rats per trap
> type.  Then they merrily run around the trap, somehow manage to fish out
> the bait from top or side, or blockade the mechanism with rocks and/or
> debris.  First generation rat poison (in order to at least keep the
> kitchen free from nightly visitors) doesn't faze them all that much.  I
> think we handed more than three packages in our kitchen (at least the
> nightly treat kept them from foraging too much elsewhere) before we gave
> up on that.  Which is ugly because with that stuff at least secondary
> poisoning (namely birds of prey or cats descending on the victims) is
> not much of an issue as the stuff is metabolized within a few days.
> 
> At any rate, it should be clear that I know much more than I'd really
> want to about this issue.  Our cats are at best so-so for rats, but they
> definitely are without much of an alternative concerning the mouse
> density.  We didn't get them lightly, particularly so since cats are
> territorial and we already had the useless cat in the accordion video.

A farmer on the BBC somewhere found cats to be the most effective rodent 
control method, but he had rather a lot, something like this:
  https://www.youtube.com/watch?v=9EYZnSXEla0 



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


Re: How to organize a single piece of work with different versions?

2018-02-14 Thread Edmundo Carmona Antoranz
Thanks for replying, Andrew. I'll take a little more time later to go
on all the subjects you bring about, however wanted to reply back on
one of the points you raise:

On Sun, Feb 11, 2018 at 3:25 AM, Andrew Bernard
 wrote:
>
> It's impossible to diff PDF's in practice, so I don't think that is a good
> idea. And again, if this is a scholarly exercise, then a learned appendix
> and footnotes may fare better.
>

I don't intend to diff PDFs. But if I go into the lilypond source, I'm
able to see the differences between one edition an the other. Take
this as a simple example:

08:21 $ git diff master..BWV1030-JCAltnikol . | head -n 20
diff --git a/BWV 1030 Flute Sonata B minor/1-andante-flute.ly b/BWV
1030 Flute Sonata B minor/1-andante-flute.ly
index 25de80f..df6b1df 100644
--- a/BWV 1030 Flute Sonata B minor/1-andante-flute.ly
+++ b/BWV 1030 Flute Sonata B minor/1-andante-flute.ly
@@ -1,4 +1,4 @@
-% Sonata for Flute and Harpsichord BWV 1030 in B minor I Andante
+% Sonata for Flute and Haprsichord BWV 1030 in B minor I Andante

%{
Copyright 2017 Edmundo Carmona Antoranz. Released under CC 4.0 by-sa
@@ -47,23 +47,23 @@

% 11
% Articulation on 3rd beat is on JS Bach's manuscript
-dis16 fis c8~ c16 b a'32( g fis16) fis8( g) r d
+dis16 fis c8~ c16 b a'32( g fis16) fis8 g r d

% 12 4th system from bachs's score starts on 2nd beat
cis16 e gis,8~ gis16 a g'32( fis e16) e8( fis) r b,


So on the flute part for the andante, bar 11 has an articulation
on Bach's manuscript that that is missing from Altnikol's manuscript.
Ok, ok that's a very easy example, but other more complex stuff
will also show up on the diffs.

BR!

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


Re: Backing track creation with LilyPond

2018-02-14 Thread Karlin High

On 2/14/2018 4:34 AM, David Kastrup wrote:

The mice were running around openly and rather visibly before that.
Already when the cats were confined to one stable cell, the difference
was staggering.  When they roamed freely, it was overwhelming.  They
couldn't have caught hundreds of mice in that time frame: it's just that
the visibility of the rodents dropped by wagonloads.


http://www.laweekly.com/news/instead-of-being-put-down-these-feral-cats-are-being-put-to-work-8963106



Cats are a natural rodent deterrent, even if they're not actively 
hunting. Mice can smell urinary proteins secreted by cats, snakes and 
other predators. According to a 2010 study at the Scripps Research 
Institute, mice don't recognize predators because of experiences with 
them but because they have evolved to do so. The mere scent of the 
urinary proteins found in cats triggers a fear response in mice.


"It's not like they're even going after the rodents," Sathe says of the 
cats. "They're kind of like a sonic force."




--
Karlin High
Missouri, USA

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


Re: How to organize a single piece of work with different versions?

2018-02-14 Thread Edmundo Carmona Antoranz
On Sun, Feb 11, 2018 at 12:03 PM, Mark Stephen Mrotek
 wrote:
> Edmundo,
>
> Did the B minor for my senior recital! Bravo.
> Note, I compile Andante, time and key signature should be moved to after
> \relative c', i.e., within the {}.
> Consider using R1 for the full measure rests. It centers the rest in the
> measure.

Thanks for the feedback. Will do!

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


Re: Backing track creation with LilyPond

2018-02-14 Thread David Kastrup
Hans Åberg  writes:

> On 14 Feb 2018, at 11:34, David Kastrup  wrote:
>
>> The mice were running around openly and rather visibly before that.
>> Already when the cats were confined to one stable cell, the difference
>> was staggering.  When they roamed freely, it was overwhelming.  They
>> couldn't have caught hundreds of mice in that time frame: it's just that
>> the visibility of the rodents dropped by wagonloads.  And ultimately
>> likely also their number, probably more because they did not dare come
>> looking for food than through actual killings.
>
> Perhaps you might check in some mouse trap channel, e.g.
>   https://www.youtube.com/watch?v=zTx5y_bufwk

Need to be live traps because of the lady of the house, and constantly
baiting them and driving the prisoners off to the other side of the
canal gets old.  Also doesn't put much of a dent in the population.  And
live traps for rats are hopeless.  You capture about three rats per trap
type.  Then they merrily run around the trap, somehow manage to fish out
the bait from top or side, or blockade the mechanism with rocks and/or
debris.  First generation rat poison (in order to at least keep the
kitchen free from nightly visitors) doesn't faze them all that much.  I
think we handed more than three packages in our kitchen (at least the
nightly treat kept them from foraging too much elsewhere) before we gave
up on that.  Which is ugly because with that stuff at least secondary
poisoning (namely birds of prey or cats descending on the victims) is
not much of an issue as the stuff is metabolized within a few days.

At any rate, it should be clear that I know much more than I'd really
want to about this issue.  Our cats are at best so-so for rats, but they
definitely are without much of an alternative concerning the mouse
density.  We didn't get them lightly, particularly so since cats are
territorial and we already had the useless cat in the accordion video.

-- 
David Kastrup

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


Re: Backing track creation with LilyPond

2018-02-14 Thread Hans Åberg


> On 14 Feb 2018, at 11:34, David Kastrup  wrote:
> 
> Hans Åberg  writes:
> 
>> Cats are very effective in that; Alexander Selkirk couldn't sleep,
>> tormented by rodents, until he befriended some cats left on the island
>> he was.
> 
> I can imagine.  We got the two cats on duty (the one on the video never
> dared move more than 2m from the house and thus was no help)

They are normally taught by their mom, so one might try to get kittens from 
farmers.

> when they
> were about three or four months old I think.  They were locked in one
> stable cell for a few days, and then overnight for a few days longer.

Maybe a cat house, like this one:
  https://www.youtube.com/watch?v=ZdaSKngA5tU

> The mice were running around openly and rather visibly before that.
> Already when the cats were confined to one stable cell, the difference
> was staggering.  When they roamed freely, it was overwhelming.  They
> couldn't have caught hundreds of mice in that time frame: it's just that
> the visibility of the rodents dropped by wagonloads.  And ultimately
> likely also their number, probably more because they did not dare come
> looking for food than through actual killings.

Perhaps you might check in some mouse trap channel, e.g.
  https://www.youtube.com/watch?v=zTx5y_bufwk

>>> I tried keeping the door to the recording room closed, but then it
>>> would scratch at the door and make more of a ruckus than when it
>>> could just wander in and see there was nothing to be had.
>> 
>> You might extract a clip "Cat photobombs Air" in a suitable category
>> so see if it gets viral. :-)
> 
> Look, I'm glad that I manage dozens of views for some of the music
> videos I create, some even with more "Like" than "Dislike" ratings (in
> the rare case that ratings are given at all).  I don't want to find out
> that videos like  would be much more
> popular.

The suggestions system seems to be linked with what gets ad revenues: views of 
specialized music seems to give no further hits, while a partial view of some 
pop stuff gets a lot.



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


Re: More than one tempo mark in a score

2018-02-14 Thread David Kastrup
Peter Toye  writes:

> The Internals Reference (or the bits that I've read) doesn't have any
> music examples.

Yes, it's autogenerated.  It does have an index, and Emacs is pretty
good at navigating via the index.

> And rather oddly, I've never used Emacs.

Well, it's gotten easier since your earlier computing days and more
discoverable.  XEmacs, the GUI and user friendly fork, is essentially
dead since it hasn't kept up.

When a snail goes on for 40 years, it might outrun a lot of sprinters.
I'm not saying that I expect you to know Emacs.  I am just saying that
you are in a better position trying to work with it than others are, and
this decade is a greater decade to do so than the previous were.

That's all.  And even used solely as a LilyPond document reader, it's
great.

-- 
David Kastrup

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


Re: More than one tempo mark in a score

2018-02-14 Thread Peter Toye
David,

The Internals Reference (or the bits that I've read) doesn't have any music 
examples. And rather oddly, I've never used Emacs.

Best regards,

Peter
mailto:lilyp...@ptoye.com
www.ptoye.com

-
Wednesday, February 14, 2018, 12:19:11 PM, you wrote:

> ptoye  writes:

>> Martin Neubauer wrote
>>> On 12/02/2018 16:42, Peter Toye wrote:

>>> Although developing lilypond itself on a windows machine might indeed be
>>> challenging, all the programming capabilities you'd need in your scores
>>> should just work anywhere lp runs. And even if you don't intend to write
>>> engravers or other somewhat complex functions from scratch yourself, a
>>> basic understanding of Scheme will certainly be helpful in the long run.
>>> You most certainly will come across solutions (in the LSR or elsewhere)
>>> that are almost right for the challenges you are faced with, but can be
>>> easily adapted to fit your needs. As these adjustments often don't
>>> require lots of skill, even a small learning effort can go a long way.
>>> And maybe curiosity will get the better of you...

>>> All the best,
>>> Martin

>> Fair enough, but my brain takes things up rather slower than it did when I
>> was learning computing (which included LISP) in the 1960s. Curiosity, yes,
>> but I find the Internals Reference manual rather heavy going. With all the
>> cross-references, you really need either a book (expensive to print it out!)
>> which you can mark up or a way of displaying 3 or 4 pages at once on a
>> terminal.

> It's a whole lot nicer to read in Info format with Emacs as Info reader.
> LilyPond's docs are actually the only Info files I know that make
> extensive use of inline images.  At least the GNOME help reader (which
> purports to deal with Info and images as well) did not scale and just
> went dead when throwing the LilyPond Info files with images at it.  But
> Emacs deals really swimmingly with it.

> Being a 1960s starter, you'd probably get along fine with it these days.___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: More than one tempo mark in a score

2018-02-14 Thread ptoye
Simon Albrecht-2 wrote
> Of course it’s possible, and a very common thing to do e.g. in 
> orchestral scores. See http://lsr.di.unimi.it/LSR/Item?id=1010;.

I've compared your solution with Hwaen Ch'uqi's and they give slightly
different results on the page. As you sent it, the tempo and mark
indications are raised too far above the stave  - by adjusting the
staff-staff spacing I've mended that. But the Largo metronome mark is too
far to the right as it seems to be aligned to the first silent note rather
than the clef or time signature. When the music changes tempo without
anything else, as in the Presto it's in the right place. So you now have to
override the X-offset by a variable amount depending on exactly what is in
the lower stave at that point, which will give difficulties if there's a
line break as well. Compare these, where the vertical placement of your
extra staff has been adjusted.

 

 

And here I've done a global override of the X-offset, and now the Presto is
too far to the left.
 

So there doesn't seem to be a simple solution to the issue which is
aesthetically pleasing.

All the best,

Peter



--
Sent from: http://lilypond.1069038.n5.nabble.com/User-f3.html

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


Re: More than one tempo mark in a score

2018-02-14 Thread David Kastrup
ptoye  writes:

> Martin Neubauer wrote
>> On 12/02/2018 16:42, Peter Toye wrote:
>> 
>> Although developing lilypond itself on a windows machine might indeed be
>> challenging, all the programming capabilities you'd need in your scores
>> should just work anywhere lp runs. And even if you don't intend to write
>> engravers or other somewhat complex functions from scratch yourself, a
>> basic understanding of Scheme will certainly be helpful in the long run.
>> You most certainly will come across solutions (in the LSR or elsewhere)
>> that are almost right for the challenges you are faced with, but can be
>> easily adapted to fit your needs. As these adjustments often don't
>> require lots of skill, even a small learning effort can go a long way.
>> And maybe curiosity will get the better of you...
>> 
>> All the best,
>> Martin
>
> Fair enough, but my brain takes things up rather slower than it did when I
> was learning computing (which included LISP) in the 1960s. Curiosity, yes,
> but I find the Internals Reference manual rather heavy going. With all the
> cross-references, you really need either a book (expensive to print it out!)
> which you can mark up or a way of displaying 3 or 4 pages at once on a
> terminal.

It's a whole lot nicer to read in Info format with Emacs as Info reader.
LilyPond's docs are actually the only Info files I know that make
extensive use of inline images.  At least the GNOME help reader (which
purports to deal with Info and images as well) did not scale and just
went dead when throwing the LilyPond Info files with images at it.  But
Emacs deals really swimmingly with it.

Being a 1960s starter, you'd probably get along fine with it these days.

-- 
David Kastrup

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


Re: More than one tempo mark in a score

2018-02-14 Thread ptoye
Martin Neubauer wrote
> On 12/02/2018 16:42, Peter Toye wrote:
> 
> Although developing lilypond itself on a windows machine might indeed be
> challenging, all the programming capabilities you'd need in your scores
> should just work anywhere lp runs. And even if you don't intend to write
> engravers or other somewhat complex functions from scratch yourself, a
> basic understanding of Scheme will certainly be helpful in the long run.
> You most certainly will come across solutions (in the LSR or elsewhere)
> that are almost right for the challenges you are faced with, but can be
> easily adapted to fit your needs. As these adjustments often don't
> require lots of skill, even a small learning effort can go a long way.
> And maybe curiosity will get the better of you...
> 
> All the best,
> Martin

Fair enough, but my brain takes things up rather slower than it did when I
was learning computing (which included LISP) in the 1960s. Curiosity, yes,
but I find the Internals Reference manual rather heavy going. With all the
cross-references, you really need either a book (expensive to print it out!)
which you can mark up or a way of displaying 3 or 4 pages at once on a
terminal.




--
Sent from: http://lilypond.1069038.n5.nabble.com/User-f3.html

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


Re: Backing track creation with LilyPond

2018-02-14 Thread David Kastrup
Hans Åberg  writes:

>> On 14 Feb 2018, at 10:17, David Kastrup  wrote:
>> 
>> Hans Åberg  writes:
>> 
 On 13 Feb 2018, at 21:04, David Kastrup  wrote:
 
 I did a Bach Air from Orchestra Suite #3 version where I
 dubbed the omitted viola voice in  but
 it's really not all too great.
>>> 
>>> The cat is great, even giving an audience response after the
>>> performance.
>> 
>> It turns out that with setting up all the recording stuff I'd usually
>> end up around feeding time of this cat (the roommate it belongs to
>> has moved out by now, and the cats we now have for sake of pest
>> control have regular working hours during which they are not to enter
>> the house).
>
> Cats are very effective in that; Alexander Selkirk couldn't sleep,
> tormented by rodents, until he befriended some cats left on the island
> he was.

I can imagine.  We got the two cats on duty (the one on the video never
dared move more than 2m from the house and thus was no help) when they
were about three or four months old I think.  They were locked in one
stable cell for a few days, and then overnight for a few days longer.
The mice were running around openly and rather visibly before that.
Already when the cats were confined to one stable cell, the difference
was staggering.  When they roamed freely, it was overwhelming.  They
couldn't have caught hundreds of mice in that time frame: it's just that
the visibility of the rodents dropped by wagonloads.  And ultimately
likely also their number, probably more because they did not dare come
looking for food than through actual killings.

>> I tried keeping the door to the recording room closed, but then it
>> would scratch at the door and make more of a ruckus than when it
>> could just wander in and see there was nothing to be had.
>
> You might extract a clip "Cat photobombs Air" in a suitable category
> so see if it gets viral. :-)

Look, I'm glad that I manage dozens of views for some of the music
videos I create, some even with more "Like" than "Dislike" ratings (in
the rare case that ratings are given at all).  I don't want to find out
that videos like  would be much more
popular.

-- 
David Kastrup

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


Re: Backing track creation with LilyPond

2018-02-14 Thread Hans Åberg

> On 14 Feb 2018, at 10:17, David Kastrup  wrote:
> 
> Hans Åberg  writes:
> 
>>> On 13 Feb 2018, at 21:04, David Kastrup  wrote:
>>> 
>>> I did a Bach Air from Orchestra Suite #3 version where I
>>> dubbed the omitted viola voice in  but
>>> it's really not all too great.
>> 
>> The cat is great, even giving an audience response after the
>> performance.
> 
> It turns out that with setting up all the recording stuff I'd usually
> end up around feeding time of this cat (the roommate it belongs to has
> moved out by now, and the cats we now have for sake of pest control have
> regular working hours during which they are not to enter the house).

Cats are very effective in that; Alexander Selkirk couldn't sleep, tormented by 
rodents, until he befriended some cats left on the island he was.

> I tried keeping the door to the recording room closed, but then it would
> scratch at the door and make more of a ruckus than when it could just
> wander in and see there was nothing to be had.

You might extract a clip "Cat photobombs Air" in a suitable category so see if 
it gets viral. :-)

> Frankly, given the faces I make on those kind of recordings, the
> distraction is probably an improvement.

It's like on shows like AGT when they buzz to see how professional the 
performers are.


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


Re: Backing track creation with LilyPond

2018-02-14 Thread David Kastrup
Hans Åberg  writes:

>> On 13 Feb 2018, at 21:04, David Kastrup  wrote:
>> 
>> I did a Bach Air from Orchestra Suite #3 version where I
>> dubbed the omitted viola voice in  but
>> it's really not all too great.
>
> The cat is great, even giving an audience response after the
> performance.

It turns out that with setting up all the recording stuff I'd usually
end up around feeding time of this cat (the roommate it belongs to has
moved out by now, and the cats we now have for sake of pest control have
regular working hours during which they are not to enter the house).

I tried keeping the door to the recording room closed, but then it would
scratch at the door and make more of a ruckus than when it could just
wander in and see there was nothing to be had.

Frankly, given the faces I make on those kind of recordings, the
distraction is probably an improvement.

-- 
David Kastrup

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


Re: Automatic vertical spacing when *some* values are fixed

2018-02-14 Thread Urs Liska

Hi David,

thanks but that doesn't help, because no, I'm no "setting quartets" but 
"anything":



Am 14.02.2018 um 01:30 schrieb David Wright:

until I find something that promises
to work generically (i.e. when I don't know the actual music and
page layout beforehand)?

IIRC you're setting quartets, so two systems of 4 staves on each page.


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