Re: Bar in a Symphony by Beethoven

2019-08-13 Thread Víctor Manuel Ares Piñeiro via lilypond-user
Thank you all very much for your help and comments.

I think I'm clear on how to do musical notation.

Greetings to the whole community from Spain.

Víctor Manuel Ares Piñeiro
victormanue...@protonmail.com

‐‐‐ Original Message ‐‐‐
El sábado, 10 de agosto de 2019 11:23, Víctor Manuel Ares Piñeiro via 
lilypond-user  escribió:

> Greetings to all members of the group:
>
> I'm transcribing Beethoven Symphonies using LilyPond for my personal use and 
> enjoyment, and I've come across a musical notation that I don't know how to 
> implement in LilyPond. I've tried to find examples of how to do it, but I 
> haven't been able to find any. I attacg in the mail the PNG image of the bar 
> I'm trying to replicate. Does anyone know how to write this bar in LilyPond?
>
> Thank you very much for your help
>
> Víctor Manuel Ares Piñeiro
> victormanue...@protonmail.com___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


arpeggio in drummode

2019-08-13 Thread edes

Hello, list.

It seems it's not possible to use \arpeggio in drummode, or am I missing
something?

The following code doesn't throw any errors but it doesn't show anything.

\version "2.21.0"

\new DrumStaff

\drummode {
  2
  \arpeggio
}



--

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


Unexpected Issue with Lilypond script

2019-08-13 Thread Anzick


Hello, I have been using the "StaffFiveLineTwo" in Lilypond with the mnp 
scripts file from http://musicnotation.org/wiki/software-wiki/lilypond/ 
 for the last year 
without issues. Suddenly, it is not engraving properly, even files that I 
engraved just a few weeks ago and have not changed at all. I get this error:
>
>  > warning: compressing over-full page by 77043.7 staff-spaces
>
> warning: page 1 has been compressed
>
>
>
> I have included the version I engraved previously, and the one from now. Do 
> you have any idea why it's not working? 
>
> Thank You,
> Anzick
>
>
>



all hornpipe from water music suite.pdf
Description: Adobe PDF document


all hornpipe from water music suite issue.pdf
Description: Adobe PDF document
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: arpeggio in drummode

2019-08-13 Thread Aaron Hill

On 2019-08-13 9:22 pm, edes wrote:

Hello, list.

It seems it's not possible to use \arpeggio in drummode, or am I 
missing

something?

The following code doesn't throw any errors but it doesn't show 
anything.


\version "2.21.0"

\new DrumStaff

\drummode {
  2
  \arpeggio
}


If you check the Internals Reference, you will see that the Arpeggio 
grob comes from the Arpeggio_engraver.  This engraver is part of a 
number of Voice contexts, but it is *not* part of DrumVoice (or 
DrumStaff, for that matter).


Try:


\version "2.19.83"

\new DrumStaff
\with { \consists "Arpeggio_engraver" }
\drummode {
  2
  \arpeggio
}


-- Aaron Hill

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