Re: Accent too close to note with acciaccatura and slur

2024-09-21 Thread Werner LEMBERG
> I have been running into... not quite a bug, but an "ugly" (bugly?) > where the accent is engraved too close to a note with an > acciaccatura and a slur. Here's a MWE: > > %%% > \version "2.25.18" > > \fixed c' { \acciaccatura { f8 } e4->^( f4) } > %%% > > At the moment I just adjust the ac

Re: Accent too close to note with acciaccatura and slur

2024-09-21 Thread Knute Snortum
On Sat, Sep 21, 2024 at 11:25 AM wrote: > Knute, > > > > Is positioning the accent above the note permissible? > > > > \fixed c' { \acciaccatura { f8 } e4^>^( f4) } > That's one way to do it... -- Knute Snortum

Re: where are the file created?

2024-09-21 Thread Stu McKenzie via LilyPond User List
It would be useful to know where your source .ly file is, because Frescobaldi appears to be using your C:/Users/Owner/AppData folder for the temporary files. If you change the \BookOutputName to the same folder as your source .ly file, or a subfolder of that folder, you should find the outpu

RE: Accent too close to note with acciaccatura and slur

2024-09-21 Thread carsonmark
Knute, Is positioning the accent above the note permissible? \fixed c' { \acciaccatura { f8 } e4^>^( f4) } Mark From: lilypond-user-bounces+carsonmark=ca.rr@gnu.org On Behalf Of Knute Snortum Sent: Saturday, September 21, 2024 11:13 AM To: lilypond-user@gnu.org Subject: Accent

Re: What am I doing wrong?

2024-09-21 Thread Knute Snortum
On Fri, Sep 20, 2024 at 6:11 PM Walter Conlon wrote: > I am a long time Lilypond User, and recently upgraded to the new 2.24.4 > version. It indicated that I had to also download Frescobaldi, which I > did. On Frescobaldi, it indicated that I had to make sure that Frescobaldi > was aware of the

Re: devnull with lyrics and ties

2024-09-21 Thread Walt North
Excellent. That does work. Thank you. On 9/20/2024 8:43 PM, Saul Tobin wrote: I think you misunderstood. If you allow Score to accept NullVoice, you don't need to explicitly instantiate a Staff, you can just do it the way you initially wanted. On Fri, Sep 20, 2024 at 11:01 PM Walt North wrot

Re: LilyPond repo down?

2024-09-21 Thread Hans Aikema
I’d like to correct my previous mail… you’re likely seeing the symptoms of a reported disruption due to extreme traffic at gitlab infra. https://status.gitlab.com/ Looks like they suffered from extremely high traffic (most logical explanation would be a DDoS attack, though their status page doe

Re: LilyPond repo down?

2024-09-21 Thread Hans Aikema
It’s more likely that you’re having intermittent issues somewhere on the connectivity from your computer via your internet service provider towards the Gitlab infrastructure. If Gitlab itself were to be really down that would be news all over the tech news channels. I’ve not yet spotted such ou

Re: LilyPond repo down?

2024-09-21 Thread Paolo Prete
(no, it's not yet... still having troubles) On Sat, Sep 21, 2024 at 3:23 PM Paolo Prete wrote: > > Now the server seems up and running again. Never mind. > > On Sat, Sep 21, 2024 at 3:13 PM Paolo Prete wrote: > > > > Hello, I can't access the GitLab LilyPond repo, right now. What's happening? >

Re: LilyPond repo down?

2024-09-21 Thread Paolo Prete
Now the server seems up and running again. Never mind. On Sat, Sep 21, 2024 at 3:13 PM Paolo Prete wrote: > > Hello, I can't access the GitLab LilyPond repo, right now. What's happening? > Thanks!

Re: where are the file created?

2024-09-21 Thread Hans Aikema
> On 21 Sep 2024, at 12:03, ming tsang wrote: > >  > Good Morning Stu McKenzie, > I am using frecobaldi v3.3.0 & lilypond v2.25.18, The two files created are > in the same folder of my source lily file. However I cannot find the temp - > it is not important as long as I find the two pdf cr

Re: where are the file created?

2024-09-21 Thread ming tsang
Good Morning Stu McKenzie, I am using frecobaldi v3.3.0 & lilypond v2.25.18, The two files created are in the same folder of my source lily file. However I cannot find the temp - it is not important as long as I find the two pdf created. tkQ, ming (lyndon) tsang. On Fri, Sep 20, 2024 at 6:14 PM S

Re: devnull with lyrics and ties

2024-09-20 Thread Saul Tobin
I think you misunderstood. If you allow Score to accept NullVoice, you don't need to explicitly instantiate a Staff, you can just do it the way you initially wanted. On Fri, Sep 20, 2024 at 11:01 PM Walt North wrote: > thanks. So far no luck. I'm giving up for the night. Get back it > tomor

Re: devnull with lyrics and ties

2024-09-20 Thread Walt North
thanks.   So far no luck.   I'm giving up for the night.  Get back it tomorrow.  Here is what I have tried so far. \version "2.24.2" \language "english" \layout {   indent = 0   \context {     \NullVoice     \RemoveAllEmptyStaves   }   \context {     \Score     \accepts NullVoice   }   \conte

Re: devnull with lyrics and ties

2024-09-20 Thread Walt North
Sorry to be a pest I'm probably  just not getting the syntax correct.  I've tried this a couple of ways. To be clear this is a sample to demonstrate the question. Not what the actual score is. \version "2.24.2" \language "english" \layout {   indent = 0   \context {     \NullVoice  

Re: devnull with lyrics and ties

2024-09-20 Thread Saul Tobin
Another way to get the extra Staff not to appear is to add the following to your \layout block: \context { \Score \accepts NullVoice } As an aside directed more at the dev community: is there any good reason not to make this the default behavior (and similar for StaffGroup, etc.)? Nul

Re: devnull with lyrics and ties

2024-09-20 Thread Walt North
First - the example I sent is a stripped down sample just to demonstrate the question I have. For the actual score the intent is two fold. Intent one. The resulting score may be used by multiple instruments and vocalists.  In the case of the guitar player they only need the lyrics and chords

Re: devnull with lyrics and ties

2024-09-20 Thread Vaughan McAlley
On Sat, 21 Sept 2024 at 10:20, Walt North wrote: > Thanks, that took care of the alignment. > > However now I see an empty staff. Is it expected I would then have to > remove all empty staves? I tried that but may not have it right > > > \version "2.24.2" > > \language "english" > > \layout { >

Re: devnull with lyrics and ties

2024-09-20 Thread Saul Tobin
The easiest way to get the staff not to appear would be to put NullVoice inside a Staff or similar context that you want to appear. On Fri, Sep 20, 2024 at 8:19 PM Walt North wrote: > Thanks, that took care of the alignment. > > However now I see an empty staff. Is it expected I would then have

RE: What am I doing wrong?

2024-09-20 Thread carsonmark
Walter, Follow these: https://lilypond.org/doc/v2.24/Documentation/learning/graphical-setup-under- windows Mark From: lilypond-user-bounces+carsonmark=ca.rr@gnu.org On Behalf Of Walter Conlon Sent: Friday, September 20, 2024 5:23 PM To: lilypond-user@gnu.org Subject: What am I

Re: devnull with lyrics and ties

2024-09-20 Thread David Wright
On Fri 20 Sep 2024 at 15:05:51 (-0700), Walt North wrote: > Am I missing something?  It seems like using devnull to align lyrics > to does pay attention to ties.  Ties do seem to be honored when using > voice for alignment. > > Below is a stripped down example with screenshot. > > \version "2.24.

Re: devnull with lyrics and ties

2024-09-20 Thread Walt North
Thanks, that took care of the alignment. However now I see an empty staff.  Is it expected I would then have to remove all empty staves?  I tried that but may not have it right \version "2.24.2" \language "english" \layout {   indent = 0   \context {     \NullVoice     \RemoveAllEmptyStaves

Re: devnull with lyrics and ties

2024-09-20 Thread Saul Tobin
My understanding is that Devnull is not intended for alignment of lyrics because it does not have the necessary engraver to create the invisible grobs used for alignment. It appears to me in your example that actually the lyrics are just being spaced evenly without alignment to anything. Nullvoice

Re: show guitar bends on regular staff?

2024-09-20 Thread Walt North
That should have read: Am I missing something?  It seems like using devnull to align lyrics to does NOT pay attention to ties.  Ties do seem to be honored when using voice for alignment. On 9/18/2024 4:34 PM, Walt North wrote: Is it possible to show guitar bends on regular staff in addition

Re: where are the file created?

2024-09-20 Thread Stu McKenzie via LilyPond User List
On 2024-09-20 04:39, ming tsang wrote: Hi lilyponders,  the following code generates two files according to the log. %%% \paper {   output-filename = "my_special_output" } \book {   \paper {     output-suffix = "menuetto"   }   \score {    \relative { c''4 d e f }  } } \book {   \paper {     o

Re: where are the file created?

2024-09-20 Thread Knute Snortum
On Fri, Sep 20, 2024 at 11:17 AM ming tsang wrote: > Hi Knute & William : > > Thank you for your reply. I have been using frescobaldi since 2010. I > have never run lilypond without frescobaldi. > > Can you show me how to run a lilypond without using frescobaldi.? > If you're not used to using

Re: Alternative beginning on drums

2024-09-20 Thread nedsi
Hi Kieren, Thanks a lot for your feedback! It didn't help me understand the automatic behavior of Lilypond, but it did help a lot to fix it anyway and have exactly the output I wanted, thanks again! I also added an example with both alternative beginning and ending, and one with the same, but

Re: scheme: problem with variable and value

2024-09-20 Thread K. Blum
Hi Timothy, Am 20.09.2024 um 21:28 schrieb Timothy Lanfear: You need (markup #:override `(box-padding . ,myvalue) #:box text) thanks a lot, that does the trick! Cheers, Klaus

Re: scheme: problem with variable and value

2024-09-20 Thread Timothy Lanfear
On 20/09/2024 20:20, K. Blum wrote: \version "2.24.3" #(define-markup-command (dosomething layout props text) (markup?)    (let* ((myvalue 1)) (interpret-markup   layout props   ; (markup #:override '(box-padding . 1) #:box text))   ; works   (markup #:override '(box-padding .

Re: where are the file created?

2024-09-20 Thread ming tsang
Hi Knute & William : Thank you for your reply. I have been using frescobaldi since 2010. I have never run lilypond without frescobaldi. Can you show me how to run a lilypond without using frescobaldi.? thQ, ming (Lyndon) Tsang. On Fri, Sep 20, 2024 at 11:39 AM Knute Snortum wrote: > > >> On

Re: where are the file created?

2024-09-20 Thread Knute Snortum
> > On 9/20/24 07:39, ming tsang wrote: > > Hi lilyponders, > > the following code generates two files according to the log. > > This seems to be a problem with Frescobaldi and not with LilyPond. If you execute the code directly with LilyPond, you can see the files, but not with Frescobaldi (ver

Re: Cry for help - lost plot ....

2024-09-20 Thread Lib Lists
On Fri, 20 Sept 2024 at 15:56, Timothy Lanfear wrote: > > On 20/09/2024 12:44, Lib Lists wrote: > > Hi everybody, > I'm connecting to this thread as it's a very similar situation: > I'm making a score consisting of fragments, and I ended up using the > \markup \fill-line \score construct. > Howeve

Re: Cry for help - lost plot ....

2024-09-20 Thread Timothy Lanfear
On 20/09/2024 12:44, Lib Lists wrote: Hi everybody, I'm connecting to this thread as it's a very similar situation: I'm making a score consisting of fragments, and I ended up using the \markup \fill-line \score construct. However, when the scores are four, the distribution seems problematic, as t

Re: where are the file created?

2024-09-20 Thread William Rehwinkel via LilyPond user discussion
You can try looking in C:/Users/Owner/AppData/Local/Temp/frescobaldi-00ou83l6/tmp2xammvvc/ , but it appears that you're using Frescobaldi and that program may or may not delete this temporary directory once the output files are generated. Thanks, -William On 9/20/24 07:39, ming tsang wrote:

Re: Cry for help - lost plot ....

2024-09-20 Thread Lib Lists
Hi everybody, I'm connecting to this thread as it's a very similar situation: I'm making a score consisting of fragments, and I ended up using the \markup \fill-line \score construct. However, when the scores are four, the distribution seems problematic, as the scores begin to overlap. Moreover, th

Re: Segno Repeat Structure

2024-09-19 Thread mskala
On Thu, 19 Sep 2024, Lucas Cavalcanti wrote: > Hello, fellow lilypond users! > > Is it possible to use the segno and volta commands in lilypond to generate a > file like this screenshot below? I think this works: \new Staff { c''1 | d''1 | e''1 | f''1 | \break \repeat volta 3 { \mark \ma

Re: show guitar bends on regular staff?

2024-09-19 Thread Federico Bruni
Il giorno mer 18 set 2024 alle 16:34:11 -07:00:00, Walt North ha scritto: Is it possible to show guitar bends on regular staff in addition to the tabstaff? Unfortunately, this was not implemented three years ago. See this comment: https://gitlab.com/lilypond/lilypond/-/issues/1196#note_595

Re: Simple ternary da capo structure

2024-09-18 Thread David Sumbler
On Wed, 2024-09-18 at 13:25 +0100, Timothy Lanfear wrote: > > > On 18/09/2024 11:57, David Sumbler wrote: > > > > > Thank you both for your help.  I'm still struggling with one thing, > > though.  I want "D.C." at the end of the 'B' section, rather than > > "D.C. al Fine".  The best thing I

Re: Simple ternary da capo structure

2024-09-18 Thread Timothy Lanfear
On 18/09/2024 11:57, David Sumbler wrote: Thank you both for your help.  I'm still struggling with one thing, though.  I want "D.C." at the end of the 'B' section, rather than "D.C. al Fine".  The best thing I have managed so far was to put \jump "D.C." at the end, but of course that doesn't r

Re: Simple ternary da capo structure

2024-09-18 Thread Xavier Scheuer
On Wed, 18 Sept 2024 at 12:57, David Sumbler wrote: > > Thank you both for your help. I'm still struggling with one thing, though. I want "D.C." at the end of the 'B' section, rather than "D.C. al Fine". The best thing I have managed so far was to put \jump "D.C." at the end, but of course that

Re: Simple ternary da capo structure

2024-09-18 Thread David Sumbler
On Tue, 2024-09-17 at 16:06 -0700, Knute Snortum wrote: > > On Tue, Sep 17, 2024 at 12:11 PM Xavier Scheuer > wrote: > > On Tue, 17 Sept 2024 at 17:03, Knute Snortum > > wrote: > > > > > > Here's what I came up with: > > > > Hello, > > > > Actually there is a property for the fine bar type. >

Re: Alternative beginning on drums

2024-09-17 Thread Kieren MacMillan
Hi again, > _\markup \bold "3×" Does this not throw an error for you…? In any case, I think this may be what you’re looking for: %%% SNIPPET BEGINS \version "2.24.3" \layout { ragged-right = ##f } #(define custom-notes '( (bassdrum default #f -3) (acousticbassd

Re: Simple ternary da capo structure

2024-09-17 Thread Knute Snortum
On Tue, Sep 17, 2024 at 12:11 PM Xavier Scheuer wrote: > On Tue, 17 Sept 2024 at 17:03, Knute Snortum wrote: > > > > Here's what I came up with: > > Hello, > > Actually there is a property for the fine bar type. > \set Score.fineBarType = "||" > and you don't need to put explicitly the \bar "||"

Re: Footnote line-spacing

2024-09-17 Thread Dimitri Sykias
Thank you very much Xavier! > On 17 Sep 2024, at 1:41 PM, Xavier Scheuer wrote: > > override #'(baseline-skip . 3)

Re: Alternative beginning on drums

2024-09-17 Thread nedsi
Hi Kieren, Thanks a lot for your answer, unfortunately it still gives me the same results. Sorry for the lack of precision in my first message. You just made me realize that, while I tried to remove any variable to avoid confusion, I forgot to include 2 `\drummode`. Here are actual files to t

Re: Ossia in Lyrics?

2024-09-17 Thread Walt North
Excellent. On 9/17/2024 12:24 PM, Xavier Scheuer wrote: On Tue, 17 Sept 2024 at 21:12, Walt North wrote: > > Is this possible?  I have a case where I want to have a Chord and Lyrics sheet with some occasional hints to Guitar player on melody fills scattered here and there.  The lilypond docs

Re: Ossia in Lyrics?

2024-09-17 Thread Xavier Scheuer
On Tue, 17 Sept 2024 at 21:12, Walt North wrote: > > Is this possible? I have a case where I want to have a Chord and Lyrics sheet with some occasional hints to Guitar player on melody fills scattered here and there. The lilypond docs show examples with Staff but not with Lyrics. Hello, That's

Re: Simple ternary da capo structure

2024-09-17 Thread Xavier Scheuer
On Tue, 17 Sept 2024 at 17:03, Knute Snortum wrote: > > Here's what I came up with: Hello, Actually there is a property for the fine bar type. \set Score.fineBarType = "||" and you don't need to put explicitly the \bar "||" at Fine. Kind regards, Xavier

Re: Simple ternary da capo structure

2024-09-17 Thread Knute Snortum
On Tue, Sep 17, 2024 at 6:41 AM David Sumbler wrote: > I am trying to set a simple piece in ternary form. I want a light double > bar (thin-thin) at the end of the 'A' section with a "Fine" marking, and at > the end of the 'B' section I want a full (thin-thick) double bar with > "D.C." marked (o

Re: hiding nullvoice

2024-09-17 Thread Walt North
That works. Thanks. On 9/17/2024 1:34 AM, Kieren MacMillan wrote: Hi Walt, I have a case where for vocalist I want to show melody and lyrics while for guitar player just the chords and lyrics. I was thinking I could use nullvoice to align the lyrics for Both. But Nullvoice is insisting on

Re: Footnote line-spacing

2024-09-17 Thread Xavier Scheuer
On Tue, 17 Sept 2024 at 01:39, Dimitri Sykias wrote: > > How can I reduce the vertical spacing between the lines in a auto-footnote? > > I attempted the following code to reduce the spacing: > > \auto-footnote \italic “1.” \wordwrap \small { \override #'(line-spacing . 0.8) footnote text. } > > Ho

Re: Alternative beginning on drums

2024-09-17 Thread Kieren MacMillan
Hi there, > When compiling, I get no error... Hmmm… the code you posted throws an error for me. In any case, I really couldn’t wrap my head around your code structure, so I tried to reorganize it in a way that made sense to me: %%% SNIPPET BEGINS \version "2.25.11" global = { \bar ".|:-|"

Re: Footnote line-spacing

2024-09-17 Thread Kieren MacMillan
Hi Dimitri, > \auto-footnote \italic “1.” \wordwrap \small { \override #'(line-spacing . > 0.8) footnote text. } This doesn’t compile by itself. Adding \markup to it makes it compilable, but doesn’t demonstrate a multi-line footnote (which is, I’m guessing, what you’re trying to work with). P

Re: hiding nullvoice

2024-09-17 Thread Kieren MacMillan
Hi Walt, > I have a case where for vocalist I want to show melody and lyrics while for > guitar player just the chords and lyrics. I was thinking I could use > nullvoice to align the lyrics for Both. But Nullvoice is insisting on > showing an empty staff. I've tried using removeallemptystave

Re: Bad bar check warning with two voices, appoggiatura, and articulate

2024-09-16 Thread William Rehwinkel via LilyPond user discussion
Dear Stu, I don't think that is the problem here, because in original OP snippet, if you comment out the line `\new Voice { \voiceFour e,2 }`, there is no barcheck fail, and if you try the following example you can hear how the upper notes become out of sync with the lower notes in the midi.

Re: Bad bar check warning with two voices, appoggiatura, and articulate

2024-09-16 Thread Stu McKenzie via LilyPond User List
On 2024-09-16 14:27, Knute Snortum wrote: On Mon, Sep 16, 2024 at 2:14 PM Knute Snortum wrote: On Mon, Sep 16, 2024 at 12:15 PM David Kastrup wrote: In my book, an appoggiatura is executed at least with the written duration, and here you take 3/16 of time from 1/8. Ho

Re: Bad bar check warning with two voices, appoggiatura, and articulate

2024-09-16 Thread Knute Snortum
On Mon, Sep 16, 2024 at 2:14 PM Knute Snortum wrote: > > On Mon, Sep 16, 2024 at 12:15 PM David Kastrup wrote: > >> >> In my book, an appoggiatura is executed at least with the written >> duration, and here you take 3/16 of time from 1/8. How is that supposed >> to work? You probably want \acc

Re: Bad bar check warning with two voices, appoggiatura, and articulate

2024-09-16 Thread Knute Snortum
On Mon, Sep 16, 2024 at 12:15 PM David Kastrup wrote: > > In my book, an appoggiatura is executed at least with the written > duration, and here you take 3/16 of time from 1/8. How is that supposed > to work? You probably want \acciaccatura or \grace instead. I think you're right that I need

Re: Bad bar check warning with two voices, appoggiatura, and articulate

2024-09-16 Thread David Kastrup
Knute Snortum writes: > I have discovered that LilyPond 2.25.19 produces a bad bar check warning > under certain circumstances. The three parts are 1) using two voices, 2) > an appoggiatura, 3) using articulate.ly. Below is my example code: > > %%% > \version "2.25.19" > > rightHand = \relative

Re: Does Frescobaldi Have a User Community

2024-09-16 Thread Stu McKenzie via LilyPond User List
On 2024-09-16 07:19, Knute Snortum wrote: On Sun, Sep 15, 2024 at 10:46 PM Stu McKenzie via LilyPond User List wrote: I use \bookOutputName to generate different output files, but when I try a full output path, or a folder path, in LilyPond, they are ignored. My previous "a

Re: Does Frescobaldi Have a User Community

2024-09-16 Thread Knute Snortum
On Sun, Sep 15, 2024 at 10:46 PM Stu McKenzie via LilyPond User List < swwlilyu...@stoozsoftware.com> wrote: > > I use \bookOutputName to generate different output files, but when I try a > full output path, or a folder path, in LilyPond, they are ignored. > My previous "acceptable" options within

Re: Question re: scheme, \transpose function

2024-09-16 Thread David Kastrup
Yoshiaki Onishi writes: > Dear LilyPonders, > > I am grateful for all your input. Synthesizing all the points raised > in this thread, I realized the solution was to make the .ly file in > which I made the function in the absolute pitch mode. Then the > original function worked as expected. Once

Re: Does Frescobaldi Have a User Community

2024-09-15 Thread Stu McKenzie via LilyPond User List
Reply to Saul Tobin at the end... On 2024-09-15 16:21, Saul Tobin wrote: You might find it more convenient to define the output PDF filename directly within Lilypond. See: https://lilypond.org/doc/v2.24/Documentation/notation/output-file-names or for 2.25 https://lilypond.org/doc/v2.25/Docum

Re: Question re: scheme, \transpose function

2024-09-15 Thread Yoshiaki Onishi
Dear LilyPonders, I am grateful for all your input. Synthesizing all the points raised in this thread, I realized the solution was to make the .ly file in which I made the function in the absolute pitch mode. Then the original function worked as expected. Thank you once again— Yoshi On Fri, S

Re: Does Frescobaldi Have a User Community

2024-09-15 Thread Saul Tobin
You might find it more convenient to define the output PDF filename directly within Lilypond. See: https://lilypond.org/doc/v2.24/Documentation/notation/output-file-names or for 2.25 https://lilypond.org/doc/v2.25/Documentation/notation/output-file-names. On Sun, Sep 15, 2024 at 5:18 PM Stu McKenz

Re: Does Frescobaldi Have a User Community

2024-09-15 Thread Stu McKenzie via LilyPond User List
Reply to Knute Snortum at the end... On 2024-09-15 12:48, Knute Snortum wrote: On Sun, Sep 15, 2024 at 11:59 AM Stu McKenzie via LilyPond User List wrote: I've encountered an issue whereby I can make a PDF output to a different file or folder using Command Prompt on Windows, e

Re: Does Frescobaldi Have a User Community

2024-09-15 Thread Knute Snortum
On Sun, Sep 15, 2024 at 11:59 AM Stu McKenzie via LilyPond User List < swwlilyu...@stoozsoftware.com> wrote: > > I've encountered an issue whereby I can make a PDF output to a different > file or folder using Command Prompt on Windows, e.g.: > > "C:/Program Files (x86)/LilyPond2p24p0/lilypond-2.24

Re: Mensural notation in a \markup command

2024-09-14 Thread Dimitri Sykias
Thank you very much! > On 15 Sep 2024, at 12:56 AM, Kieren MacMillan > wrote: > > Hi Dimitri, > >> How can I achieve this in LilyPond? > > Here’s one option: > > \version "2.25.11" > > \markup \concat { > \general-align #Y #0 \musicglyph #"timesig.mensural94" > \general-align #Y #0 " = "

Re: Mensural notation in a \markup command

2024-09-14 Thread Kieren MacMillan
Hi Dimitri, > How can I achieve this in LilyPond? Here’s one option: \version "2.25.11" \markup \concat { \general-align #Y #0 \musicglyph #"timesig.mensural94" \general-align #Y #0 " = " \general-align #Y #0 \fontsize #-2 \override #'(baseline-skip . 1.75) \column { \number 9 \number 2

Re: Mensural notation in a \markup command

2024-09-14 Thread Graham King
On Sat, 2024-09-14 at 03:50 +0300, Dimitri Sykias wrote: > I would like to insert the following mensural symbols using the > \markup command in LilyPond. > > > > In LaTeX, this can be done easily with a command like: > \lilyGlyph[raise=0.6, scale=2]{timesig.mensural94} = > \lilyTimeSignature{9}{

Re: Question re: scheme, \transpose function

2024-09-13 Thread David Kastrup
William Rehwinkel via LilyPond user discussion writes: > Dear Yoshi, > > Actually, I think the procedure is working correctly, but using the > \transpose function within a \relative is causing some weird > output. For example, the file > > % > \version "2.25.18" > \relative c' { > c16

Re: Question re: scheme, \transpose function

2024-09-13 Thread William Rehwinkel via LilyPond user discussion
Dear Yoshi, Actually, I think the procedure is working correctly, but using the \transpose function within a \relative is causing some weird output. For example, the file % \version "2.25.18" \relative c' { c16 c16 } % does not result in the output that I was expectin

Re: Question re: scheme, \transpose function

2024-09-13 Thread Yoshiaki Onishi
Thank you for your insight, Saul, For the foregoing code, I replaced $ with #, but now that isn't working, producing similar result as the first example of this LilyPond manual: https://lilypond.org/doc/v2.25/Documentation/notation/substitution-functions-and-relative-octave-entry I will try to k

Re: Question re: scheme, \transpose function

2024-09-13 Thread Saul Tobin
I believe this stems from using $ rather than #, since this will insert literally c' and cause the apostrophe to be parsed twice. I'm away from my computer right now so can't actually test the example. Saul On Fri, Sep 13, 2024, 10:58 AM Yoshiaki Onishi wrote: > Dear LilyPond Community, > > In

Re: \include & Headers

2024-09-13 Thread Michael Gerdau
My pleasure. Lilypond is hugely powerful and therefore at times complex. As many others on this list will confirm, there is almost nothing that can’t be done if you’re willing to go the extra mile. And a lot of things just work out of the box. Kind regards, Michael Mobil gesendet > Am 12.09.

Question re: scheme, \transpose function

2024-09-13 Thread Yoshiaki Onishi
Dear LilyPond Community, In the interest of learning more about Scheme as used in LilyPond (and learning LilyPond in general!), I am currently in the process of making a shortcut function that handles the artificial harmonic notation of string instruments instead of typing ""However, something mus

Re: reusing melody in different TabVoice instruments

2024-09-13 Thread Walt North
Yes, transpose will do that for sections of notes.  However that means putting the original section of notes into one set of tweaks and the transposed section into the other set of tweaks and putting more skips into the original melody line.  Which partially defeats reusing one melody line beca

Re: shared notes across piano staff

2024-09-13 Thread Paolo Prete
Hi, instead of going crazy using LilyPond's native functions for cross-staff, try using this, which supports exactly what you need: https://github.com/paopre/Spontini/blob/master/documentation/tabular.md Here’s the code that generates your complete music fragment: << \easyCrossStaff %TMODE {

Re: reusing melody in different TabVoice instruments

2024-09-13 Thread Peter Chubb
You can use transpose. \transpose c c' { music } Peter C

Re: reusing melody in different TabVoice instruments

2024-09-12 Thread Walt North
Darn.  Well almost. The octave tweak is only good for one note. Which actually makes sense from a code point of view.  I'll have to find another work around to switch octave for a longer string of notes. \version "2.24.2" melody = \relative c' {  c4 d e f |  c d e f |  s4 g g g | } guitarTwea

Re: Appoggiature too fast

2024-09-12 Thread mskala
On Fri, 13 Sep 2024, David Kastrup wrote: > > it. In any case, it seems clear the code is *not* intended to use > > 9/40 of the notated duration, which is what happens after the commit I > > highlighted. > > Vocal method from Nicola Vaccai: [100% of notated duration] Again much longer than 9/40

Re: Appoggiature too fast

2024-09-12 Thread mskala
On Fri, 13 Sep 2024, l...@chubb.wattle.id.au wrote: > he says, 'The usual rule of duration for appogiaturas is that they > take from the following tone of duple length one half of its value, > and two-thirds from one of triple length'. Current articulate.ly says in code comments that it uses half

Re: Appoggiature too fast

2024-09-12 Thread lily
> "David" == David Kastrup writes: David> msk...@ansuz.sooke.bc.ca writes: David> I am surprised. The way I know appoggiature, they typically David> take the notated duration from the attached main note (which David> may leave very little of the main note). Indeed, the period David> definit

Re: reusing melody in different TabVoice instruments

2024-09-12 Thread Walt North
This is working great for the most part.  One thing I have had a bit of trouble with is octave.  But I have a workaround that will work for the most part for simple cases. There are a handful of notes that I want in different octave for some instruments.  \resetRelativeOctave does not seem to

Re: \include & Headers

2024-09-12 Thread Dimitri Sykias
Dear Michael, Thank you very much for your time. I realize that I still have a lot of work to do to fully understand the workings of the program.

Re: Appoggiature too fast

2024-09-12 Thread mskala
On Thu, 12 Sep 2024, msk...@ansuz.sooke.bc.ca wrote: > It's not clear to me from the description of that issue what the issue > actually is. There is one sentence describing the grace music data > structure but no other text. Further to this: I wonder if what's really going on is an issue with

Re: Appoggiature too fast

2024-09-12 Thread mskala
On Thu, 12 Sep 2024, Werner LEMBERG wrote: > > > I'm still hoping for a response to this, if only to confirm whether > > others see the change in behaviour and that it's not something > > unique to my installation. [...] > > I don't have time to investigate this further, sorry (and I'm rather > p

Re: Appoggiature too fast

2024-09-12 Thread Jean Abou Samra
> Le 12 sept. 2024 à 16:18, Xavier Scheuer a écrit : > > Could be linked to > https://gitlab.com/lilypond/lilypond/-/commit/a6b11d016886d53345766589a625ba5d0a1fa961 > that fixed 6489 > https://gitlab.com/lilypond/lilypond/-/issues/6489 I can't see how that commit could have changed anything t

Re: Appoggiature too fast

2024-09-12 Thread Xavier Scheuer
On Thu, 12 Sept 2024 at 15:53, wrote: > > I'm still hoping for a response to this, if only to confirm whether others > see the change in behaviour and that it's not something unique to my > installation. I'm pretty sure that what 2.25.19 is doing is wrong. Hello, Could be linked to https://gitl

Re: Appoggiature too fast

2024-09-12 Thread Werner LEMBERG
> I'm still hoping for a response to this, if only to confirm whether > others see the change in behaviour and that it's not something > unique to my installation. [...] I don't have time to investigate this further, sorry (and I'm rather poor with MIDI). Can you do some git bisecting to find

Re: Appoggiature too fast

2024-09-12 Thread mskala
I'm still hoping for a response to this, if only to confirm whether others see the change in behaviour and that it's not something unique to my installation. I'm pretty sure that what 2.25.19 is doing is wrong. The documentation still says that an appoggiatura "takes a fixed fraction of the main

Re: \include & Headers

2024-09-11 Thread Michael Gerdau
Dear Dimitri, please ALWAYS include the list when answering to a post! I've looked at the code you provided. There are several things that do not make it minimal. I've attached a heavily edited version that still is not minimal but much smaller and thus easier to understand. 0.) Apparently y

Re: shared notes across piano staff

2024-09-11 Thread Robert Garrigos
Thanks Knute and Timothy, I did try with change staff, but it seemed not to work, and I guess it was because the bar wasn’t finished. Robert > El 11 set. 2024, a les 19:51, Timothy Lanfear va > escriure: > > On 11/09/2024 17:39, Robert Garrigos wrote: >> Hi, >> >> I have this piano excerpt

Re: shared notes across piano staff

2024-09-11 Thread Knute Snortum
-- Knute Snortum On Wed, Sep 11, 2024 at 9:40 AM Robert Garrigos wrote: > Hi, > > I have this piano excerpt I’m trying to reproduce: > > [image: Cursor_and_CP_Schum_47_pdf.jpeg] > and I have this code: > > \score { > << > \new PianoStaff > << > \new Staff \relative c' { > \key g \minor > \time

Re: shared notes across piano staff

2024-09-11 Thread Timothy Lanfear
On 11/09/2024 17:39, Robert Garrigos wrote: Hi, I have this piano excerpt I’m trying to reproduce: Cursor_and_CP_Schum_47_pdf.jpeg and I have this code: how can I have the bf and the a in the second measure shared across the staves?? You need the \change Staff command https://lilypond.or

Re: issue with duration-lines from tied notes

2024-09-11 Thread Thomas Morley
Am Mi., 11. Sept. 2024 um 06:17 Uhr schrieb Matthew Burns : > > Hi Everyone, > > Thanks to everyon for this mailing list, I've been reading for a while > and it's lovely to have a place to see things I haven't found! > > I'm currently having some issues with Duration lines, and I thought > I'd shar

Re: \include & Headers

2024-09-10 Thread Michael Gerdau
Could you please provide a MWE (minimal working example) and not just a sketch? It’s impossible to know what the problem is otherwise. Minimal means: Remove everything that can be removed and still shows the problem. Everything literally means everything. Kind regards, Michael Mobil gesendet

Re: Changing percussion notation without starting a new staff

2024-09-10 Thread Richard Cookson
Thanks, I hadn't seen that. On Tue, 10 Sept 2024 at 20:02, Xavier Scheuer wrote: > On Tue, 10 Sept 2024 at 20:09, Richard Cookson < > richardcookson.3rdpla...@gmail.com> wrote: > > > > Hi, > > > > I am writing some percussion parts (orchestral, not kit) which require a > number of changes of ins

Re: reusing melody in different TabVoice instruments

2024-09-10 Thread Walt North
Excellent - exactly what I was looking for.. On 9/10/2024 11:58 AM, Xavier Scheuer wrote: On Tue, 10 Sept 2024 at 17:04, Walt North wrote: > > Is there any way to do this? What follows is a made up example.  I have a melody that may be shared across different string instruments. > > I'd like

Re: Changing percussion notation without starting a new staff

2024-09-10 Thread Xavier Scheuer
On Tue, 10 Sept 2024 at 20:09, Richard Cookson < richardcookson.3rdpla...@gmail.com> wrote: > > Hi, > > I am writing some percussion parts (orchestral, not kit) which require a number of changes of instrument. I would like to change from one instrument to another without starting a new staff. I hav

  1   2   3   4   5   6   7   8   9   10   >