Re: automaticMelismata

2014-07-22 Thread Phil Holmes
- Original Message - 
From: "David Kastrup" 

To: "Karol Majewski" 
Cc: "lilypond-user" 
Sent: Monday, July 21, 2014 8:20 PM
Subject: Re: automaticMelismata



"Karol Majewski"  writes:


Hi,

how can I disable automatic melismatas on slurs? I remember that there
was automaticMelismata but no longer it seems to be working.


http://www.lilypond.org/doc/v2.19/Documentation/notation/stanzas#stanzas-with-different-rhythms>

--
David Kastrup



Or use phrasing slurs.

--
Phil Holmes 



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


something's wrong with \unset Score.proportionalNotationDuration

2014-07-22 Thread Karol Majewski
\version "2.19.10"

{
  \set Score.proportionalNotationDuration = #(ly:make-moment 1/32)
  \repeat unfold 32 { f'32 }
  \newSpacingSection
  \unset Score.proportionalNotationDuration
  f'4 f'4 f'4 f'4
}


Look at the huge gap between first two quarter notes. Bug?


--Karol



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


Re: something's wrong with \unset Score.proportionalNotationDuration

2014-07-22 Thread tisimst
karol wrote
> \version "2.19.10"
> 
> {
>   \set Score.proportionalNotationDuration = #(ly:make-moment 1/32)
>   \repeat unfold 32 { f'32 }
>   \newSpacingSection
>   \unset Score.proportionalNotationDuration
>   f'4 f'4 f'4 f'4
> }
> 
> 
> Look at the huge gap between first two quarter notes. Bug?
> 
> 
> --Karol
> 
> 
> 
> ___
> lilypond-user mailing list

> lilypond-user@

> https://lists.gnu.org/mailman/listinfo/lilypond-user

Karol,

I've seen this kind of thing happen in other cases (but I can't remember a
single one at the moment). The issue is that you must \unset the
proportionalNotationDuration one note PRIOR to when it is to actually take
effect. Like this:

{
  \set Score.proportionalNotationDuration = #(ly:make-moment 1/32)
  \repeat unfold 31 { f'32 }  % notice the 31 instead of 32
  \newSpacingSection
  \unset Score.proportionalNotationDuration
  f'32  % here's the 32nd note, but the \unset doesn't effect it, just
starting with the notes...
  f'4 f'4 f'4 f'4
}

Not sure why this is the case, but I think there's a technical reason that
it must be this way (I wish I could remember other cases where this
applies... Any else remember other cases where this happens?).

Regards,
Abraham



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/something-s-wrong-with-unset-Score-proportionalNotationDuration-tp164785p164786.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: Template: String Quartet (score-only), first draft

2014-07-22 Thread Graeme Lee


On 20-Jul 22:52, MarcM wrote:

I found this thread via google and it dates from few years back.

I include the sample at the end of this mail.

You can compare it with the one here:
http://www.lilypond.org/doc/v2.18/Documentation/learning/string-quartet


The documentation shows a sample for string quartet parts  which requires to
uncomment lines.
http://www.lilypond.org/doc/v2.18/Documentation/learning/string-quartet-parts


Hi Marc

If you read the second link, you'll find that it suggests splitting the 
document into separate files.  The music goes into a source file (in 
this case, "piece.ly" and the parts are separate.


The 'comments' are the to keep it in one file which compiles for the 
site.  That's it.  It's up to you how you split it up.


Hope this helps.

Graeme


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