Re: midi not rendering tied notes

2017-01-28 Thread David Wright
On Sat 28 Jan 2017 at 22:18:03 (-0600), Bruce Pike wrote:
> I'm having difficulty getting midi generation to recognize tied notes.  For
> the score below, when I play the midi output the notes sound as individual
> eighth notes rather than as tied notes.
> 
> \version "2.18.2" \language "english"
> 
> music = \relative c {
>   \time 4/4 \key c \major
>   e'8 g( g) g( g) e( e) a |

( ) is a slur, not a tie. Try:

e'8 g~ g g~ g e~ e a |

> }
> 
> \score {
> \new Staff
> {
>   \music
> }
>   \layout { }
>   \midi { }
> }

Cheers,
David.

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


midi not rendering tied notes

2017-01-28 Thread Bruce Pike
I'm having difficulty getting midi generation to recognize tied notes.  For
the score below, when I play the midi output the notes sound as individual
eighth notes rather than as tied notes.

\version "2.18.2" \language "english"

music = \relative c {
  \time 4/4 \key c \major
  e'8 g( g) g( g) e( e) a |
}

\score {
\new Staff
{
  \music
}
  \layout { }
  \midi { }
}


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


Re: Footnotes for subtitle

2017-01-28 Thread Simon Albrecht

On 28.01.2017 22:38, Amir Teymuri wrote:

Hello,

is it possible to right a footnote about a word in the subtitle of the piece?


Yes, it is. Check out the markup command \footnote.

Best, Simon

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


Footnotes for subtitle

2017-01-28 Thread Amir Teymuri
Hello,

is it possible to right a footnote about a word in the subtitle of the piece?

Regards,
Amir

...
Amir Teymuri 

X-Mailer: Sylpheed 3.5.0beta1 (GTK+ 2.24.25; x86_64-pc-linux-gnu)

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


Re: Is this MIDI file correct?

2017-01-28 Thread David Kastrup
Simon Albrecht  writes:

> On 28.01.2017 11:29, David Sumbler wrote:
>> On Sat, 2017-01-28 at 11:11 +0100, Anders Eriksson wrote:
>>> On 2017-01-28 11:04, Simon Albrecht wrote:
 Hello everybody,

 I’m having some trouble with MIDI right now and would like to
 verify
 if the problem lies with playback. Could someone tell me whether
 the
 attached MIDI file has any issues?
>>> On Windows 10 and Windows Media Player I can hear a Piano playing.
>>> So no Issues, unless there should be more voices...
>>>
>>> // Anders
>> And on Ubuntu 16.04, using Timidity, I have a single line Yamaha Grand
>> melody, lasting for 3 minutes and 42 seconds.
>
> Then the problem lies with my setup of Timidity and Frescobaldi. I run
> timidity -iA
> in a terminal, then in Frescobaldi open Edit/Preferences/Midi
> Preferences, refresh ports, choose one of the 4 Timidity ports, but it
> doesn’t work…

alsamixer in a terminal and check that volumes for PCM and speaker are
up and M on the speaker isn't on?

-- 
David Kastrup

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


Re: Is this MIDI file correct?

2017-01-28 Thread Simon Albrecht

On 28.01.2017 11:29, David Sumbler wrote:

On Sat, 2017-01-28 at 11:11 +0100, Anders Eriksson wrote:

On 2017-01-28 11:04, Simon Albrecht wrote:

Hello everybody,

I’m having some trouble with MIDI right now and would like to
verify
if the problem lies with playback. Could someone tell me whether
the
attached MIDI file has any issues?

On Windows 10 and Windows Media Player I can hear a Piano playing.
So no Issues, unless there should be more voices...

// Anders

And on Ubuntu 16.04, using Timidity, I have a single line Yamaha Grand
melody, lasting for 3 minutes and 42 seconds.


Then the problem lies with my setup of Timidity and Frescobaldi. I run
timidity -iA
in a terminal, then in Frescobaldi open Edit/Preferences/Midi 
Preferences, refresh ports, choose one of the 4 Timidity ports, but it 
doesn’t work…


Best, Simon

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


can't move note columns in both voices at beginning of a bar

2017-01-28 Thread Stefan Thomas
Dear community,
the following example shows, that I can't move NoteColumns in two voices at
the beginning of a measure. It's only possible in one of the voices.
Has someone an idea for a solution?
Thanks,
Stefan

\version "2.18.2"
makespace = { \once \override NoteColumn.force-hshift = 11 }

First = {  \makespace e4 r8 f8 g2 }

Second = {  c4 r8   d8 e2   }

\new Staff { \transpose c c' << {  \First \First  } \\ { \Second
\makespace \Second } >> }
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Making end-double barline visible again

2017-01-28 Thread Malte Meyn


Am 28.01.2017 um 15:53 schrieb Amir Teymuri:
> i have made barlines for the whole piece invisible using:
> 
> \layout {
>\context {
>  \Score
>  \omit SpanBar
>}
>\context {
>  \Staff
>  \omit BarLine
>}
> }
> 
> and want to have the ending barlines at the end of the piece visible again.
> How should i proceed?

Try the following

\new StaffGroup <<
  \new Staff {
\repeat unfold 28 c'
\undo \omit Staff.BarLine
\undo \omit Score.SpanBar
\bar "|."
  }
  \new Staff {
\repeat unfold 28 c'
\undo \omit Staff.BarLine
  }
>>

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


Making end-double barline visible again

2017-01-28 Thread Amir Teymuri
Hello Lilypond users,

i have made barlines for the whole piece invisible using:

\layout {
   \context {
 \Score
 \omit SpanBar
   }
   \context {
 \Staff
 \omit BarLine
   }
}

and want to have the ending barlines at the end of the piece visible again.
How should i proceed?
Any help is appreciated.

Thanks

...
Amir Teymuri 

X-Mailer: Sylpheed 3.5.0beta1 (GTK+ 2.24.25; x86_64-pc-linux-gnu)

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


Re: [Frescobaldi] State of Frescobaldi development

2017-01-28 Thread Guy Stalnaker
Wilbert,

I, for one, GREATLY appreciate what you do. I remember that I pay nothing 
for Frescobaldi, this truly excellent application and that it is developed 
evenings-on-weekends-when-time-permits basis. For myself, were development 
stopped today, Frescobaldi meets my needs as it is (though I don't 
understand why the Score Wizard does not work on the MacOS El Capitan 
version neither in v18.x nor v19.x). I have said it before and I do not 
hesitate saying it again--it is one of the best applications I frequently 
use--well designed, well laid out, and it does exactly what it says it does.

Thank you.

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


Re: Is this MIDI file correct?

2017-01-28 Thread David Sumbler
On Sat, 2017-01-28 at 11:11 +0100, Anders Eriksson wrote:
> On 2017-01-28 11:04, Simon Albrecht wrote:
> > 
> > Hello everybody,
> > 
> > I’m having some trouble with MIDI right now and would like to
> > verify 
> > if the problem lies with playback. Could someone tell me whether
> > the 
> > attached MIDI file has any issues?
> On Windows 10 and Windows Media Player I can hear a Piano playing.
> So no Issues, unless there should be more voices...
> 
> // Anders

And on Ubuntu 16.04, using Timidity, I have a single line Yamaha Grand
melody, lasting for 3 minutes and 42 seconds.

David

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


Re: Tips on quick entry

2017-01-28 Thread Richard Shann
On Fri, 2017-01-27 at 22:39 -0700, Samuel Speer wrote:
> Richard: Your video was really impressive. On my first try, however,
> Denemo was really frustrating. The tooltips took me at good 5-10
> minutes to figure out, then every time I tried to connect my midi
> keyboard, it crashed.
Thank your for the feedback. The Gtk tooltips is a bit like the guile2.0
saga - a bunch of developers off following their own interest and
leaving a trail of destruction in their wake. I have now re-written
Denemo so that it no longer uses the Gtk tooltip mechanism, so they are
entirely controllable via the preferences.
The help manual suggests the MIDI controller is best connected before
starting Denemo, connection is then automatic. I haven't seen it crash
in recent years on a MIDI connection though, but I know that very old
versions of Denemo still circulate.

Richard



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


Re: Is this MIDI file correct?

2017-01-28 Thread Anders Eriksson


On 2017-01-28 11:04, Simon Albrecht wrote:

Hello everybody,

I’m having some trouble with MIDI right now and would like to verify 
if the problem lies with playback. Could someone tell me whether the 
attached MIDI file has any issues?

On Windows 10 and Windows Media Player I can hear a Piano playing.
So no Issues, unless there should be more voices...

// Anders

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


Is this MIDI file correct?

2017-01-28 Thread Simon Albrecht

Hello everybody,

I’m having some trouble with MIDI right now and would like to verify if 
the problem lies with playback. Could someone tell me whether the 
attached MIDI file has any issues?


Best, Simon



Übe-Midi-Sopran.midi
Description: MIDI audio
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: change staff

2017-01-28 Thread Gianmaria Lari
Absolutely agree :) Consider my last code a scheme exercise...

On 28 January 2017 at 09:33, Helge Kruse  wrote:

> Am 26.01.2017 um 10:51 schrieb Gianmaria Lari:
> > ... and this is one more way to do the change staff using a scheme
> function
> > that toggle between the two staff.
> >
> ...
> > Not sure it can be more useful than the other ones. Also have no idea if
> > this logic should be written differently. But it has been a nice scheme
> > exercise :)
>
> I think it's better to use two switch the staves up and down. If you use
> the same expression for both directions then you have to count the
> instances to see where you are. This makes the Lilypond source less
> readable. On the other side you would get a huge amount of warnings and
> a scrambled output if you miss one of your \cs or misspelled it.
>
> Regards,
> Helge
>
>
> ___
> 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: Cluster exapnded over two systems

2017-01-28 Thread Robert Schmaus

Hi Amir,

I'm not sure if I understand your last sentence correctly -  did you 
mean, \makeCluster doesn't do what you need in general, or did you mean 
that you need to apply \makeCluster over several staffs?


If you meant the latter, that is no problem. \makeCluster does work over 
several systems - you just have to apply \change Staff to the music 
expressions. Like this


\version "2.19.35"

\score{

\new PianoStaff <<

\new Staff = "up" { s1 }
		\new Staff = "lo" { \clef bass \makeClusters { < c c' >8 < d' d'' > 
\change Staff = "up" < e' c > < f'' c > } g' \change Staff = "lo" c' b a, }

>>
}

Best,
Robert




Am 27/01/2017 um 19:11 schrieb Amir Teymuri:

Hello Lilypond users,

i want to notate a cluster for piano reaching from b, to a'' expanding over 
both right- and lefthand systems. however i have found till know the 
\makeClusters command which doesn't look like what i am looking for. Can any 
one help?

Thanks,
Amir

...
Amir Teymuri 

X-Mailer: Sylpheed 3.5.0beta1 (GTK+ 2.24.25; x86_64-pc-linux-gnu)

___
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: LSR search interface: syntax errors

2017-01-28 Thread Andrew Bernard
Hi Simon,

I don't think you can. I have tried this type of search in the past.

I think the search engine is written by the chap who hosts LSR. Maybe we
have to write to him. A read of the search engine manual revealed nothing
of any use. Apparently it cannot deal with punctuation characters, although
there is no mention of this being denied, on a surface scan of the docs.

Would be a very useful enhancement, since there are often hyphens in
lilypond terms.

Andrew


On 28 January 2017 at 19:54, Simon Albrecht  wrote:

> Hello everybody,
>
> I just wanted to search the LSR for examples of ly:music-set-property!.
> However, I have not been able to come up with a way to enter this
> function name in the search field without triggering a syntax error. I
> tried things like
>
> "ly:music-set-property!"
> 'ly:music-set-property!'
> ly\:music\-set\-property!
>
> to no avail. How would one go about with that?
>
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


LSR search interface: syntax errors

2017-01-28 Thread Simon Albrecht

Hello everybody,

I just wanted to search the LSR for examples of ly:music-set-property!. 
However, I have not been able to come up with a way to enter this 
function name in the search field without triggering a syntax error. I 
tried things like


"ly:music-set-property!"
'ly:music-set-property!'
ly\:music\-set\-property!

to no avail. How would one go about with that?

Best, Simon


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


Re: change staff

2017-01-28 Thread Helge Kruse
Am 26.01.2017 um 10:51 schrieb Gianmaria Lari:
> ... and this is one more way to do the change staff using a scheme function
> that toggle between the two staff.
> 
...
> Not sure it can be more useful than the other ones. Also have no idea if
> this logic should be written differently. But it has been a nice scheme
> exercise :)

I think it's better to use two switch the staves up and down. If you use
the same expression for both directions then you have to count the
instances to see where you are. This makes the Lilypond source less
readable. On the other side you would get a huge amount of warnings and
a scrambled output if you miss one of your \cs or misspelled it.

Regards,
Helge


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