bass sign does not show on a measure
Hi, lily users: I need help. I coded "\clef bass" before the last third note on measure two, but the bass sign does not appear. How can I make it printed? snip \version "2.14.2" \include "english.ly" upper = \relative c { \clef bass \key c \major \time 4/4 \autoBeamOff page 55 g8 g8 r8 g16 bf16 bf8 ef,8 r8 ef16 ef16 ef8 ef16 f16 g16 g16 g16 af16 af8 ef8 \clef bass af8 af16 af16 bf8 c8 af8 af8 \clef treble af'4 bf8 c8 } score { \new Staff = upper { \new Voice = "singer" \upper } } end Blessing, ming. ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user
Re: bass sign does not show on a measure
Ming On 17 November 2011 11:55, MING TSANG wrote: > Hi, lily users: > I need help. I coded "\clef bass" before the last third note on measure > two, but the bass sign does not appear. Yes because you have already defined your clef. Use \cueClef instead. James -- -- James ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user
Re: bass sign does not show on a measure
Thanks. It works for the first \cueClef, but the second one it shows at the wrong place (at the begining of second system instead of befoe the last second note of the second system. Any idea, what I did wrong. % start \version "2.14.2" \include "english.ly" upper = \relative c { \clef bass \key c \major \time 4/4 \autoBeamOff page 55 bf'8 bf8 r4 f8 f16 f16 f8 f8 | bf8 bf8 r16 bf16 bf16 d16 bf8 bf8 r4 | bf8 bf16 bf16 bf8 bf8 bf8 f8 \cueClef bass f8 bf8 \break %first system bf8 f8 r8 f16 f16 f16 f16 f16 g16 af8 af8 | r8 af8 af16 af16 bf16 f16 g8 g8 \cueClef bass bf8 ef,8 \break %second system } \score { \new Staff = upper { \new Voice = "singer" \upper } } % end Blessing in+, ming > >From: Peekay Ex >To: MING TSANG >Cc: "lilypond-user@gnu.org" ; >"lilypond-user-requ...@gnu.org" >Sent: Thursday, November 17, 2011 7:47:34 AM >Subject: Re: bass sign does not show on a measure > >Ming > >On 17 November 2011 11:55, MING TSANG wrote: >> Hi, lily users: >> I need help. I coded "\clef bass" before the last third note on measure >> two, but the bass sign does not appear. > >Yes because you have already defined your clef. > >Use \cueClef instead. > >James > >-- >-- >James > > >___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user
Re: bass sign does not show on a measure
It now thinks that your cue voice is already in the bass clef, so doesn't show another clef. Add this before each \clef command you want to force to be shown: \set Staff.forceClef = ##t -- Phil Holmes - Original Message - From: MING TSANG To: Peekay Ex Cc: lilypond-user-requ...@gnu.org ; lilypond-user@gnu.org Sent: Thursday, November 17, 2011 3:21 PM Subject: Re: bass sign does not show on a measure Thanks. It works for the first \cueClef, but the second one it shows at the wrong place (at the begining of second system instead of befoe the last second note of the second system. Any idea, what I did wrong. % start \version "2.14.2" \include "english.ly" upper = \relative c { \clef bass \key c \major \time 4/4 \autoBeamOff page 55 bf'8 bf8 r4 f8 f16 f16 f8 f8 | bf8 bf8 r16 bf16 bf16 d16 bf8 bf8 r4 | bf8 bf16 bf16 bf8 bf8 bf8 f8 \cueClef bassf8 bf8 \break %first system bf8 f8 r8 f16 f16 f16 f16 f16 g16 af8 af8 | r8 af8 af16 af16 bf16 f16 g8 g8 \cueClef bass bf8 ef,8 \break %second system } \score { \new Staff = upper { \new Voice = "singer" \upper } } % end Blessing in+, ming From: Peekay Ex To: MING TSANG Cc: "lilypond-user@gnu.org" ; "lilypond-user-requ...@gnu.org" Sent: Thursday, November 17, 2011 7:47:34 AM Subject: Re: bass sign does not show on a measure Ming On 17 November 2011 11:55, MING TSANG wrote: > Hi, lily users: > I need help. I coded "\clef bass" before the last third note on measure > two, but the bass sign does not appear. Yes because you have already defined your clef. Use \cueClef instead. James -- -- James -- ___ 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: bass sign does not show on a measure
"Phil Holmes" writes: > It now thinks that your cue voice is already in the bass clef, so > doesn't show another clef. > > Add this before each \clef command you want to force to be shown: > > \set Staff.forceClef = ##t Perhaps, similar to \time, we should make this automatic when you say \clef\default ? Or is there a better use for this currently unavailable command? -- David Kastrup ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user
Re: bass sign does not show on a measure
Hello, On 17 November 2011 17:46, David Kastrup wrote: > "Phil Holmes" writes: > >> It now thinks that your cue voice is already in the bass clef, so >> doesn't show another clef. >> >> Add this before each \clef command you want to force to be shown: >> >> \set Staff.forceClef = ##t > > Perhaps, similar to \time, we should make this automatic when you say > \clef\default ? Or is there a better use for this currently unavailable > command? Why not make \set Staff.forceClef = ##t default? That is whenever I have a \clef \[bass|treble|g|alto|whatever] command it, well, prints a clef? Regards -- -- James ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user
Re: bass sign does not show on a measure
Thank you. It works perfectly now. Blessing in+, Ming > >From: Phil Holmes >To: MING TSANG ; Peekay Ex >Cc: lilypond-user-requ...@gnu.org; lilypond-user@gnu.org >Sent: Thursday, November 17, 2011 11:36:08 AM >Subject: Re: bass sign does not show on a measure > > > >It now thinks that your cue voice is already in the bass clef, so doesn't show another clef. > >Add this before each \clef command you want to force to be shown: > > \set Staff.forceClef = ##t > > >-- >Phil Holmes > > >- Original Message - >>From: MING TSANG >>To: Peekay Ex >>Cc: lilypond-user-requ...@gnu.org ; lilypond-user@gnu.org >>Sent: Thursday, November 17, 2011 3:21 PM >>Subject: Re: bass sign does not show on a measure >> >> >>Thanks. >> >>It works for the first \cueClef, but the second one it shows at the wrong place (at the begining of second system instead of befoe the last second note of the second system. Any idea, what I did wrong. >> >> >>% start >>\version "2.14.2" >>\include "english.ly" >> >>upper = \relative c { >> \clef bass >> \key c \major >> \time 4/4 >> \autoBeamOff >> page 55 >> bf'8 bf8 r4 f8 f16 f16 f8 f8 | >> bf8 bf8 r16 bf16 bf16 d16 bf8 bf8 r4 | >> bf8 bf16 bf16 bf8 bf8 bf8 f8 \cueClef bass f8 bf8 \break %first system >> bf8 f8 r8 f16 f16 f16 f16 f16 g16 af8 af8 | >> r8 af8 af16 af16 bf16 f16 g8 g8 \cueClef bass bf8 ef,8 \break %second system >> } >> >>\score { >> >> \new Staff = upper { \new Voice = "singer" \upper } >> >>} >>% end >> >> >>Blessing in+, >>ming >> >> >>> >>> From: Peekay Ex >>>To: MING TSANG >>>Cc: "lilypond-user@gnu.org" ; >>>"lilypond-user-requ...@gnu.org" >>>Sent: Thursday, November 17, 2011 7:47:34 AM >>>Subject: Re: bass sign does not show on a measure >>> >>>Ming >>> >>>On 17 November 2011 11:55, MING TSANG wrote: Hi, lily users: I need help. I coded "\clef bass" before the last third note on measure two, but the bass sign does not appear. >>> >>>Yes because you have already defined your clef. >>> >>>Use \cueClef instead. >>> >>>James >>> >>>-- >>>-- >>>James >>> >>> >>> >> >> ___ >>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
[ANN] LilyPondTool 2.14 prerelease available
The long awaited 2.14 release of LilyPondTool is now available for download from https://sourceforge.net/projects/lily4jedit/files/latest/download?source=files Unzip to your jEdit settings directory (e.g. c:\documents and settings\YOU\.jedit) The most important new features are: - completely rewritten parser (best used with "Parse on keystroke" - See Plugins > Plugin Options > SideKick) (the new parser is created using flex and bison so very closely mirrors the actual lilypond parser) - instant compile - LilyPond will be called to compile your file in the background while you are working, and the PDF preview is updated automatically - compile on save - a lot of bugfixes This release should be available from jEdit plugin repository in 1-2 weeks - I'm waiting for bugreports until that :) Send them to the bug tracker at http://sf.net/projects/lily4jedit Enjoy! Bert ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user
Re: [ANN] LilyPondTool 2.14 prerelease available
Hello, I have never been able to get LilyPondTool to work. I only just now reinstalled the latest versions of Java, jEdit and now this version of Lilypondtool, and again it will not work. I unzipped the file to .jEdit as instructed, but when I go to the Plugin Manager to install it, the Lilypond line is red, the status column says "error" and the rightmost column says "0 bytes". Dos anybody have idea of what could be wrong? Or can someone direct me to a helpful source? Thanks for any help, Brent. On 17 November 2011 22:48, Bertalan Fodor (LilyPondTool) < lilypondt...@organum.hu> wrote: > The long awaited 2.14 release of LilyPondTool is now available for > download from > > https://sourceforge.net/projects/lily4jedit/files/latest/download?source=files > > Unzip to your jEdit settings directory (e.g. c:\documents and > settings\YOU\.jedit) > > The most important new features are: > - completely rewritten parser (best used with "Parse on keystroke" - See > Plugins > Plugin Options > SideKick) (the new parser is created using flex > and bison so very closely mirrors the actual lilypond parser) > - instant compile - LilyPond will be called to compile your file in the > background while you are working, and the PDF preview is updated > automatically > - compile on save > - a lot of bugfixes > > This release should be available from jEdit plugin repository in 1-2 weeks > - I'm waiting for bugreports until that :) > Send them to the bug tracker at http://sf.net/projects/lily4jedit > > Enjoy! > > Bert > ___ > 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
note extension dot positioning
How can I avoid lilypond placing the extension dot for the note of the upper voice behind the lower voice note? I'd like to have the upper voice note (including dot) to the left (or right) of the lower voice note, and its dot should be next to the note. see attached screenshot <>___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user
Re: [ANN] LilyPondTool 2.14 prerelease available
You need some other plugins installed as well. This will be automatic if LilyPondTool is released to the jEdit plugin manager. Meanwhile install Console, Errorlist, ProjectViewer, SideKick and Jakarta Commons. I think that's it. Though jEdit should display the missing stuff on startup. 2011/11/18, Brent Annable : > Hello, > > I have never been able to get LilyPondTool to work. I only just now > reinstalled the latest versions of Java, jEdit and now this version of > Lilypondtool, and again it will not work. I unzipped the file to .jEdit as > instructed, but when I go to the Plugin Manager to install it, the Lilypond > line is red, the status column says "error" and the rightmost column says > "0 bytes". Dos anybody have idea of what could be wrong? Or can someone > direct me to a helpful source? > > Thanks for any help, > > Brent. > > On 17 November 2011 22:48, Bertalan Fodor (LilyPondTool) < > lilypondt...@organum.hu> wrote: > >> The long awaited 2.14 release of LilyPondTool is now available for >> download from >> >> https://sourceforge.net/projects/lily4jedit/files/latest/download?source=files >> >> Unzip to your jEdit settings directory (e.g. c:\documents and >> settings\YOU\.jedit) >> >> The most important new features are: >> - completely rewritten parser (best used with "Parse on keystroke" - See >> Plugins > Plugin Options > SideKick) (the new parser is created using flex >> and bison so very closely mirrors the actual lilypond parser) >> - instant compile - LilyPond will be called to compile your file in the >> background while you are working, and the PDF preview is updated >> automatically >> - compile on save >> - a lot of bugfixes >> >> This release should be available from jEdit plugin repository in 1-2 weeks >> - I'm waiting for bugreports until that :) >> Send them to the bug tracker at http://sf.net/projects/lily4jedit >> >> Enjoy! >> >> Bert >> ___ >> lilypond-user mailing list >> lilypond-user@gnu.org >> https://lists.gnu.org/mailman/listinfo/lilypond-user >> >> > -- Mobilkészülékről küldve ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user