bug or feature with the extent of NoteColumn with 2.15.20 ?

2011-12-07 Thread Thomas Morley
Hi, trying to compile a function manipulating the NoteColumn with 2.15.20 I noticed some differences to 2.14.2 So I wrote a test-function to display the grob-length: \version 2.14.2 %\version 2.15.20 #(define (x-length-of-grob grob) (let* ((sys (ly:grob-system grob)) (grob-length

No flags printed with 2.15.20 using TabStaff with \tabFullNotation

2011-12-17 Thread Thomas Morley
Hi, this doesn't print flags with 2.15.20, but it does with 2.14.2. \version 2.14.2 %\version 2.15.20 \new TabStaff { \tabFullNotation c8 } Cheers, Harm attachment: good-2-14-2.pngattachment: bad-2-15-20.png___ bug-lilypond mailing list

Re: Issue 2072 in lilypond: Add proper complex variables to Lilypond

2011-12-21 Thread Thomas Morley
Hi, please ignore, if this is mentioned before (I couldn't find anything about it). Numbers in LilyPond-variables are already possible, if superscript-numbers are used. note⁰ = \relative c' { c1 } note¹ = \relative c' { d1 } note² = \relative c' { d1 } note³ = \relative c' { f1 } note⁴ =

Something wrong/strange about flags?

2011-12-25 Thread Thomas Morley
Hi, while manipulating stems, flags and beams I noticed something strange about flags: \version 2.15.20 displayGrob = \once \override Stem #'after-line-breaking = #(lambda (grob) (let* ((beam (ly:grob-object grob 'beam)) (flag (ly:grob-object grob

TextScript isn't entirely scaled, while using another staff-size

2011-12-25 Thread Thomas Morley
Hi, the following example shows that the markup isn't scaled correct, according to the changed staff-size \version 2.15.20 music = { c'-\markup { XXX \draw-line #'(0 . 4) } } \new StaffGroup \new Staff \with { fontSize = #-20 \override StaffSymbol #'staff-space =

Re: Something wrong/strange about flags?

2011-12-25 Thread Thomas Morley
Hi Neil, 2011/12/25 Neil Puttock n.putt...@gmail.com: On 25 Dec 2011 22:27, Thomas Morley thomasmorle...@googlemail.com wrote: 1. IR 3.2.109 stem-interface states: flag (graphical (layout) object)  A pointer to a Flag object.    I would have expected: () (there is no flag!) The unused

Re: Something wrong/strange about flags?

2011-12-25 Thread Thomas Morley
2011/12/26 Neil Puttock n.putt...@gmail.com: On 25 Dec 2011 23:01, Thomas Morley thomasmorle...@googlemail.com wrote: I think there could be some difficulties to find the correct condition, when I create my own definitions/functions: \version 2.15.20 displayGrob =       \once\override

Wrong placement of BreathingSign

2012-01-09 Thread Thomas Morley
With 2.14.2 and 2.15.2 the BreathingSign isn't positioned correct, while using changed staff-size or (default) TabStaff. 2.12.3-behaviour was accurate. %\version 2.12.3 \version 2.14.2 %\version 2.15.20 mel = { c'1 \breathe } \score { \new Staff\with { fontSize

Re: Strange spacing

2012-01-23 Thread Thomas Morley
2012/1/23 David Kastrup d...@gnu.org: Thomas Scharkowski t.scharkow...@t-online.de writes: Thomas Scharkowskit.scharkow...@t-online.de  writes: Thank you. Neil's workaround should not be necessary - this is a bug, isn't it? Personally, I consider glaringly dissimilar spacing in adjacent

Cross-staff-glissando doesn't work any more

2012-02-06 Thread Thomas Morley
With 2.15.24 the cross-staff-glissando doesn't work any more. 2.14.2-output was ok. \version 2.15.24 \new PianoStaff \new Staff = right { e'''2\glissando \change Staff = left a,,\glissando \change Staff = right b''8 } \new Staff = left { \clef bass s1 s8 } Harm

doc addition

2012-02-23 Thread Thomas Morley
Hi, In Contributor Guide 7.7 Updating LSR to a new version, below the paragraph: To update LSR, perform the following steps: 1.Download the latest snippet tarball, extract it, and run convert-ly on all files using the command-line option ‘--to=version’ to ensure snippets are updated to the

Bug in NR 1.2.4

2012-02-25 Thread Thomas Morley
Hi, in NR 1.2.4 the following example gives a log-warning: \relative c'' { \override Beam #'breakable = ##t c8 c[ c] c[ c] c[ c] c[ \break c8] c[ c] c[ c] c[ c] c } log-warning: programming error: Disagree on common x. Skipping collisions in beam scoring. continuing, cross fingers

Re: Bug in NR 1.2.4

2012-02-25 Thread Thomas Morley
2012/2/25 Thomas Morley thomasmorle...@googlemail.com: Hi, in NR 1.2.4 the following example gives a log-warning: \relative c'' {  \override Beam #'breakable = ##t  c8 c[ c] c[ c] c[ c] c[ \break  c8] c[ c] c[ c] c[ c] c } log-warning: programming error: Disagree on common x. Skipping

NR 4.5.1 v2.15.30 states SeparationItem

2012-02-26 Thread Thomas Morley
In NR 4.5.1 of version 2.15.30 near the end of that paragraph under known issues the non-existent SeparationItem is mentioned. This and the sentence direct above should be deleted. Cheers, Harm ___ bug-lilypond mailing list bug-lilypond@gnu.org

Re: NR 4.5.1 v2.15.30 states SeparationItem

2012-02-26 Thread Thomas Morley
2012/2/26 Phil Holmes m...@philholmes.net: I've searched for it and can't find it in my downloaded PDF version.  You sure it's the NR? Yes, I found it here: http://lilypond.org/doc/v2.15/Documentation/notation/horizontal-spacing-overview and in the pdf. (Both in the german translation.)

bug with tupletFullLength

2012-02-26 Thread Thomas Morley
The following code gives a log warning: \version 2.15.30 \new Staff { \set tupletFullLength = ##t % \override TupletBracket #'full-length-to-extent = ##f \time 1/8 \times 2/3 { c'16 c' c' } \mark 123456789 } log: warning: Found infinity or nan in output. Substituting 0.0 If the

Re: bug with tupletFullLength

2012-02-27 Thread Thomas Morley
Hi Colin, 2012/2/27 Colin Hall colingh...@gmail.com: On Mon, Feb 27, 2012 at 02:12:06AM +0100, David Kastrup wrote: Colin Hall colingh...@gmail.com writes: On Sun, Feb 26, 2012 at 06:36:05PM +0100, Thomas Morley wrote: The following code gives a log warning: \version 2.15.30 \new

Unexpected warning, while enlarging staff-space

2012-03-06 Thread Thomas Morley
Hi, this code gives an unexpected warning with 2.14.2 and 2.15.31. (No warning with 2.12.3 ) \version 2.15.31 \new Staff \with { \override StaffSymbol #'staff-space = #(magstep 4) } \relative c''' { \voiceOne c8. c16 } log: programming error: No viable beam quanting found. Using

Re: Unexpected warning, while enlarging staff-space

2012-03-06 Thread Thomas Morley
2012/3/7 Thomas Morley thomasmorle...@googlemail.com: Hi, this code gives an unexpected warning with 2.14.2 and 2.15.31. (No warning with 2.12.3 ) \version 2.15.31 \new Staff \with { \override StaffSymbol #'staff-space = #(magstep 4) }        \relative c''' { \voiceOne c8. c16 } log

NR 1.2.4 - Not working snippet

2012-03-14 Thread Thomas Morley
Hi, due to the changes in 3/4-time snippet lily-baa9b310-1.ly in NR 1.2.4 doesn't work any more (and the description above is wrong) At least in the german translation. \version 2.15.33 \relative c'' { \time 3/4 % by default we beam in (3) due to beamExceptions \repeat unfold 6 {a8} |

MultiMeasureRest's 'staff-position in RhythmicStaff is wrong per default

2012-03-14 Thread Thomas Morley
Hi, with the following code the first MMR is displaced. Adding a 'staff-position-override works, but it shouldn't be necessary. \version 2.15.33 \new RhythmicStaff { r1 R1 \override MultiMeasureRest #'staff-position = #0 R1 } Cheers, Harm attachment:

Re: Center a number above a measure

2012-03-26 Thread Thomas Morley
Am 27. März 2012 01:08 schrieb Clément themu...@gmail.com: Hello, I've encountered many limits when trying to put numbers above measures. 2 problems : 1) I found no possibility to print number 1 above multi-measure rests. This is no crazy idea of mine, Breitkopf does it :

Failed compiling a single lsr-snippet, which does not fail when running the whole lsr

2012-04-02 Thread Thomas Morley
Hi, Seba just informed me that the Contemporary vibrato snippet is not compiling. (1) I tested again compiling the whole lsr with: #!/bin/bash for LILYFILE in *.ly do STEM=$(basename $LILYFILE .ly) echo running $LILYFILE... lilypond --format=png -ddelete-intermediate-files $LILYFILE

Re: Failed compiling a single lsr-snippet, which does not fail when running the whole lsr

2012-04-02 Thread Thomas Morley
Am 3. April 2012 01:51 schrieb m...@apollinemike.com m...@apollinemike.com: On Apr 3, 2012, at 1:26 AM, Thomas Morley wrote: Hi, Seba just informed me that the Contemporary vibrato snippet is not compiling. Contemporary vibrato is a total hack (it was one of the 1st things I wrote

Re: Failed compiling a single lsr-snippet, which does not fail whenrunning the whole lsr

2012-04-03 Thread Thomas Morley
Am 3. April 2012 10:27 schrieb Phil Holmes m...@philholmes.net: - Original Message - From: Thomas Morley thomasmorle...@googlemail.com To: lilypond-devel lilypond-de...@gnu.org Cc: David Nalesnik david.nales...@gmail.com; bug-lilypond bug-lilypond@gnu.org Sent: Tuesday, April 03

Re: Failed compiling a single lsr-snippet, which does not fail whenrunning the whole lsr

2012-04-03 Thread Thomas Morley
Am 3. April 2012 16:52 schrieb David Kastrup d...@gnu.org: m...@apollinemike.com m...@apollinemike.com writes: On Apr 3, 2012, at 1:10 PM, Phil Holmes wrote: We need to check what the script is doing and how it responds to failing snippets like this.  I'm not in a position to do this right

Re: Failed compiling a single lsr-snippet, which does not fail whenrunning the whole lsr

2012-04-03 Thread Thomas Morley
Am 3. April 2012 21:30 schrieb David Kastrup d...@gnu.org: Thomas Morley thomasmorle...@googlemail.com writes: Using #!/bin/bash for LILYFILE in *.ly do   STEM=$(basename $LILYFILE .ly)   echo running $LILYFILE...   lilypond --format=png -ddelete-intermediate-files $LILYFILE

Re: Rest position in drum voice

2012-04-06 Thread Thomas Morley
Am 6. April 2012 23:09 schrieb Janek Warchoł janek.lilyp...@gmail.com: On Fri, Apr 6, 2012 at 9:20 PM, Vaylor Trucks vay...@gmail.com wrote: If I try to do the following: \version 2.14.2 up = \drummode {        hh bd8[ hh ss16 bd] hh tomh16[ hh tomh bd hh sn]        r16 hh16[ hh tomh] hh

Re: Feature request: Display bezier control-points

2012-05-03 Thread Thomas Morley
Hi Urs, I would be very happy about one or two more features (that I unfortunately can't implement myself: - highlight (and separate from the music) the crosses through a color - possibly adding a connecting (very thin) line, making it even more intuitive Best Urs how about: \version

Re: Feature request: Display bezier control-points

2012-05-04 Thread Thomas Morley
Hi Urs, There are two more issues with this: - I don't see how to get it working with ties. Which would be nice of course works with Ties now. Can't do more for now. I have to go to my regular job. :( \version 2.14.2 #(define (make-cross-stencil coords) (ly:stencil-add (make-line-stencil

Re: \override BassFigureAlignment #'stacking-dir broken 2.14.2-1

2012-05-09 Thread Thomas Morley
2012/5/9 TorbjörnBjörkman torbjo...@gmail.com: I'm not top posting. \version 2.14.2-1 % Changing the stacking-dir for BassFigureAlignment seems % to be broken when adding the figures to the staff rather % than creating a separate FiguredBass staff. % Here it works fine...  \new

Re: \override BassFigureAlignment #'stacking-dir broken 2.14.2-1

2012-05-09 Thread Thomas Morley
2012/5/9 Torbjörn Björkman torbjo...@gmail.com: Thanks a heap! You just saved me the trouble to write a script that swaps the order of the bass figures in my whole library (which is a lot...) Cheers, Torbjörn Glad I could help. Please don't fotget to cc the list. -Harm

Re: \override BassFigureAlignment #'stacking-dir broken 2.14.2-1

2012-05-09 Thread Thomas Morley
2012/5/9 Colin Hall colingh...@gmail.com: Can I add my thanks too, Thomas? This sort of support from the more experienced members of the team is very helpful indeed. Cheers, Colin. -- Colin Hall You're welcome. -Harm ___ bug-lilypond mailing

Re: Warnings in the documented example

2012-05-20 Thread Thomas Morley
2012/5/21 Colin Hall colingh...@gmail.com: - Another question, how do I put slurs on both notes (musicUp and musicDown)? Can't help you there. Perhaps one of the more experienced members of the team can assist you with this. Cheers, Colin. -- Colin Hall \set doubleSlurs = ##t In

Re: imperfect ossias

2012-06-02 Thread Thomas Morley
2012/6/3 Karol Majewski karol.majew...@gmail.com: I think that the way of creating ossias, that is presented in the documentation, is incomplete. Apart from reducing size of: font, staff-space and thickness, we also have to reduce length of the beam! Otherwise we get something like this:

Re: imperfect ossias

2012-06-03 Thread Thomas Morley
2012/6/3 Colin Hall colingh...@gmail.com: On Sun, Jun 03, 2012 at 11:53:56AM +0200, Karol Majewski wrote: Aha. Now i see that the same thing happens with clef symbol and time signature symbol. Is this all working for you now, Karol? I just need to know if there is still a bug report open.

Re: Parenthesizing multi measure rests

2012-07-09 Thread Thomas Morley
2012/7/9 Simon Albrecht simon_albre...@lavabit.com: %% When using \parenthesize on whole bar or multi measure rests, no parentheses %% will be printed: \version 2.14.2 \paper { ragged-right=##t } \parenthesize R1 ___ bug-lilypond mailing

TextSpanner disappears after linebreak

2012-07-10 Thread Thomas Morley
%% The TextSpanner disappears after a linebreak, if the new line starts with a MultiMeasureRest. %% %% 2.12.3 was ok (apart from bad left-broken-padding). 2.12.3-png attached. %% Since 2.14.x up to 2.15.42 not. 2.15.42-png attached. \version 2.15.39 \relative c' { c1\startTextSpan

Re: parenthesize dots in fretboards

2012-08-10 Thread Thomas Morley
2012/8/8 Mathew Lindner mlindner2...@gmx.net: Hello, I look for the function to parenthesize dots in fretboards. How can I do that? \version 2.14.1 \relative c { d'^\markup { { { \fret-diagram-verbose #'((place-fret 3 4 1) ) } } } } Thank you very much Mathew

Re: Clef transparent does not hide clefOctavation

2012-09-12 Thread Thomas Morley
2012/9/12 Michael Scott Cuthbert cuthb...@mit.edu: I'm not top posting (I don't know what that is!) the override Clef transparent tag does not get rid of the 8 on octava clefs. If there's another way to do it, I haven't seen it and it'd be great to document. Thanks for the amazing work!

Re: LSR is not at the stable release level

2012-10-03 Thread Thomas Morley
2012/10/2 Eluze elu...@gmail.com: [...] here's a list of the snippets that failed to compile correctly - nearly all will have to be looked at by a Schemer. list_of_errors_and_warnings.ods http://lilypond.1069038.n5.nabble.com/file/n133977/list_of_errors_and_warnings.ods Hi Eluze, thanks for

Re: Strange phrasing slur with autoBeaming = ##f

2012-10-03 Thread Thomas Morley
2012/10/3 Stemby carlo.stember...@gmail.com: I'm not top posting. Here is a short example: - \version 2.14.2 % Strange phrasing slur with autoBeaming = ##f \layout { \context { \Score autoBeaming = ##f % try to comment this line } } \relative c'' { \time 3/4

Re: LSR is not at the stable release level

2012-10-03 Thread Thomas Morley
2012/10/4 Eluze elu...@gmail.com: Thomas Morley wrote 2012/10/2 Eluze lt; eluzew@ gt;: But I think there are likely some more. here is the list of all the snippets I found causing problems (searching for error:|warning:|wrong|pair\):): a-function-to-repeatedly-print-a-given-pattern

Re: LSR is not at the stable release level

2012-10-04 Thread Thomas Morley
2012/10/4 Eluze elu...@gmail.com: [...] I consider the LSR a valuable addition to the regular LilyPond and I have used a lot of those snippets - sometimes I changed a little bit sometimes I used the original. now if I can't use the solutions I have elaborated some time ago - and I believe many

Re: LSR is not at the stable release level

2012-10-04 Thread Thomas Morley
2012/10/5 Thomas Morley thomasmorle...@googlemail.com: AFAIK, the LSR is an associated project, not part of the source in any way. So why start a new issue? Forgot that the LSR provides files (tagged docs), which are imported into the documentation. So it _is_ part of LilyPond in some way

Re: Font size in a Dynamics context

2012-10-05 Thread Thomas Morley
2012/10/5 Carlo Stemberger carlo.stember...@gmail.com: Hi, I can't change the font size in a Dynamics context. For example: - \version 2.16.0 upper = \relative c'' { a4 b \tiny c d } lower = \relative c' { a2\fff \tiny c_\pp } % no problem dynamics = { s2\fff \tiny s2\pp } % \tiny

Re: PartcombineApart and overriding rests

2012-10-05 Thread Thomas Morley
2012/10/5 Clément themu...@gmail.com: I'm not top posting. Hello, PartcombineApart refuses Rest's overrides. In the first Voice, it does nothing. In the second Voice, it crashes. When Rests are merged, no problem. This bug does not affect MultiMeasureRests. \version 2.17.3 partI =

Re: PartcombineApart and overriding rests

2012-10-05 Thread Thomas Morley
2012/10/5 Clément Ryder themu...@gmail.com: How stupid of me, thanks for the advice ! [ ... ] Hi Clement, glad I could help. Please don't forget to answer to all. Especially writing to the bug-list. Regards, Harm ___ bug-lilypond mailing list

Re: revitalizing a whole GrandStaff if only one Staff is alive

2012-10-10 Thread Thomas Morley
2012/10/10 Phil Holmes m...@philholmes.net: Eluze elu...@gmail.com wrote in message news:50756197.4090...@gmail.com... Am 10.10.2012 10:59, schrieb Phil Holmes: Why don't you add this as a snippet to the LSR, and tag is with docs. That way it will automatically appear in the snippets

Re: revitalizing a whole GrandStaff if only one Staff is alive

2012-10-10 Thread Thomas Morley
2012/10/10 Eluze elu...@gmail.com: Am 10.10.2012 14:13, schrieb Phil Holmes: Eluze elu...@gmail.com wrote in message news:50756197.4090...@gmail.com... Am 10.10.2012 10:59, schrieb Phil Holmes: Why don't you add this as a snippet to the LSR, and tag is with docs. That way it will

Re: revitalizing a whole GrandStaff if only one Staff is alive

2012-10-10 Thread Thomas Morley
2012/10/10 Eluze elu...@gmail.com: Am 10.10.2012 15:03, schrieb Thomas Morley: 2012/10/10 Eluze elu...@gmail.com: Am 10.10.2012 14:13, schrieb Phil Holmes: Eluze elu...@gmail.com wrote in message news:50756197.4090...@gmail.com... Am 10.10.2012 10:59, schrieb Phil Holmes: Why don't

Re: Excessive vertical spacing in multiple-verse SATB choir reduction scores

2012-11-05 Thread Thomas Morley
2012/11/6 Aristotle A. Esguerra aristo...@esguerra.info: Aristotle A. Esguerra aristotle at esguerra.info writes: I am putting together an SATB choir-reduction template and find that every additional verse I add between the SA and TB staves also adds whitespace between the final lyric line

Adding StringNumber 0 in TabStaff crashes

2012-11-21 Thread Thomas Morley
Hi, adding \0 as StringNumber-indication crashes, while using with TabStaff. \version 2.17.6 \new TabStaff { d\0 } Regards, Harm ___ bug-lilypond mailing list bug-lilypond@gnu.org https://lists.gnu.org/mailman/listinfo/bug-lilypond

Re: Adding StringNumber 0 in TabStaff crashes

2012-11-23 Thread Thomas Morley
2012/11/23 David Kastrup d...@gnu.org: Federico Bruni fedel...@gmail.com writes: 2012/11/23 Pierre Perol-Schneider pierre.schneider.pa...@gmail.com ?? Confusing string number 0 ?? Humm ... not sure... If string number is wanted Thomas should write : \version 2.17.6

Re: Adding StringNumber 0 in TabStaff crashes

2012-11-23 Thread Thomas Morley
2012/11/23 Thomas Morley thomasmorle...@googlemail.com: 2012/11/23 David Kastrup d...@gnu.org: Federico Bruni fedel...@gmail.com writes: 2012/11/23 Pierre Perol-Schneider pierre.schneider.pa...@gmail.com ?? Confusing string number 0 ?? Humm ... not sure... If string number

Re: Adding StringNumber 0 in TabStaff crashes

2012-11-24 Thread Thomas Morley
2012/11/24 Eluze elu...@gmail.com: Am 24.11.2012 10:37, schrieb David Kastrup: Since string numbers are otherwise used consistently, and since fingerings of 0 are being used as well, and there is plenty of both circled and uncircled 0, I am pretty sure that there is some meaning to it. I

Re: Bugs with \set Staff.whichBar

2012-11-24 Thread Thomas Morley
2012/11/25 Keith OHara k-ohara5...@oco.net: Ben Rudiak-Gould benrudiak at gmail.com writes: The 2.16 documentation says that \set Staff.whichBar = |: will create a start-repeat bar in this staff only. I suppose desired behavior is to have at least one way to change one bar-line in one

articulate can't deal with

2012-12-06 Thread Thomas Morley
Hi, seems articulate can't deal with in any tested version %%% \version 2.17.6 \include articulate.ly \score { \unfoldRepeats \articulate { c''1 | } \midi { } } %%% The log: warning: barcheck failed at: 1/8

Re: NoteHead X-offset, conflict with ly:grob-relative-coordinate

2012-12-10 Thread Thomas Morley
2012/12/10 Paul Morris p...@paulwmorris.com: I'm not top posting. % All the notes should be moved to the right-hand % side of the stem by overriding their X-offset % property, but something about the rel-coord % variable that is set by ly:grob-relative-coordinate % prevents this from

\crossStaff breaks, if stem-direction changes.

2012-12-14 Thread Thomas Morley
Hi, a simple \transpose c c' (with changing stem-direction) can break \crossStaff without printing a warning or error. %%% example \version 2.16.1 \layout { \context { \PianoStaff \consists #Span_stem_engraver } } mI = \new PianoStaff \new Staff { d'8 } \new

Re: snippet multi-measure-rest-markup.ly and use of s1*0

2012-12-30 Thread Thomas Morley
2012/12/30 Federico Bruni fedel...@gmail.com: Il 30/12/2012 14:06, Trevor Daniels ha scritto: Note that the spacer rest causes a bar line to be inserted. I cannot understand the last sentence. I cannot see any change in the bar lines if I comment the spacer rests. Neither can I. I

Re: snippet multi-measure-rest-markup.ly and use of s1*0

2012-12-30 Thread Thomas Morley
2012/12/30 Federico Bruni fedel...@gmail.com: Il 30/12/2012 16:21, Thomas Morley ha scritto: Hi Federico, I followed this discussion only cursorily. If there's need to alter a LSR-snippet I could do it for you. Please send me revised version. Maybe Trevor is already working

Re: changing flag style/stencil should affect metronome mark, shouldn't it?

2013-01-06 Thread Thomas Morley
2013/1/6 Federico Bruni fedel...@gmail.com: Il 06/01/2013 16:09, Karol Majewski ha scritto: Hi there, I don't see how can change flag style (stencil) in metronome mark. \version 2.17.9 { \override Flag.stencil = #old-straight-flag \set autoBeaming = ##f \tempo 8 = 120 c'8

Re: changing flag style/stencil should affect metronome mark, shouldn't it?

2013-01-06 Thread Thomas Morley
2013/1/6 Thomas Morley thomasmorle...@googlemail.com: [...] Example: If 'style is set 'mensural, `note-by-number' returns ugly output for short note-durations (same with \note): \markup { \override #'(style . mensural) { \note-by-number #3 #0 #1

Re: Font Change, staff size, lyric size

2013-01-08 Thread Thomas Morley
2013/1/8 Nels Daily dailymusici...@gmail.com: When I try to change fonts, and then staff size, only the staff size changes. Also I can't change the size of the lyrics from layout. \version 2.14.2 % necessary for upgrading to future LilyPond versions. #(set-global-staff-size 14) \paper {

Re: changing flag style/stencil should affect metronome mark, shouldn't it?

2013-01-10 Thread Thomas Morley
2013/1/10 Colin Hall colingh...@gmail.com: Thomas Morley writes: 2013/1/6 Federico Bruni fedel...@gmail.com: Il 06/01/2013 16:09, Karol Majewski ha scritto: Hi there, I don't see how can change flag style (stencil) in metronome mark. \version 2.17.9 { \override Flag.stencil = #old

Bug with RehearsalMark, resulting in a wrong placed BreathingSign

2013-02-14 Thread Thomas Morley
With the following code the BreathingSign is placed wrong. \version 2.16.1 % same with: %\version 2.17.10 \new Staff \relative c'' { d8 d \mark \markup Tutti d2. } \new Staff \relative c' { d4 \breathe d2 \mark \markup Tutti d4 } I stumbled over it by accident. Setting the RehearsalMark on

Re: Error when compiling a large file

2013-02-19 Thread Thomas Morley
2013/2/19 James pkx1...@gmail.com: I've attached your Zip file here in case anyone else with Windows wants to give it a go. Testing the file with my not so powerful laptop (Ubuntu 10.04) takes some minutes more. Though, I noticed no problems. FWIW, Harm

Re: à in title makes damaged pdf

2013-02-23 Thread Thomas Morley
2013/2/24 yvand yvand.sw...@gmail.com: Hi lilypond developpers, I wanted to type the well-known composition Für Elise in lilypond for a friend. Unfortunately, the PDF generated by lilypond was damaged (according to evince, gimp, inkscape)! After some tests, I found what was the problem.

Re: à in title makes damaged pdf

2013-02-24 Thread Thomas Morley
2013/2/24 David Kastrup d...@gnu.org: David Kastrup d...@gnu.org writes: So much for my theory that a mail attachment is a guarantee for a byte-for-byte faithful copy. On my side, the file was definitely UTF-8-encoded. I have to agree that what appears on Gmane (where I read this list)

Re: à in title makes damaged pdf

2013-02-24 Thread Thomas Morley
2013/2/24 yvand yvand.sw...@gmail.com: Le 24/02/2013 19:03, james a écrit : the problem here is not in lilypond, nor in the file, exactly. The problem is the character encoding. (You can look up character encoding on wikipedia if you really want to know more about it.) More to the point: the

Wrong MultiMeasureRest-glyphs?

2013-02-26 Thread Thomas Morley
With measures longer than two whole notes LilyPond chooses different glyphs for MultiMeasureRest. \version 2.17.12 \new Staff { \compressFullBarRests \time 7/4 R1*7/4 R1*7/4*2 \break \time 9/4 R1*9/4 R1*9/4*2 \break \time 18/4 R1*18/4 R1*18/4*2 } Discussion on the

Re: Single Whole Measure Rest vs compressed MMR (WAS: Issue 3208 Wrong MultiMeasureRest glyph)

2013-02-27 Thread Thomas Morley
2013/2/28 Xavier Scheuer x.sche...@gmail.com: On 27 February 2013 18:13, lilyp...@googlecode.com wrote: Comment #1 on issue 3208 by philehol...@googlemail.com: Wrong MultiMeasureRest glyph http://code.google.com/p/lilypond/issues/detail?id=3208 OK - let's just be clear about what the bug

Re: Single Whole Measure Rest vs compressed MMR (WAS: Issue 3208 Wrong MultiMeasureRest glyph)

2013-02-27 Thread Thomas Morley
2013/2/28 Xavier Scheuer x.sche...@gmail.com: I sometimes wanted different horizontal space settings for single Whole Measure Rest and real multimeasure rests a.k.a compressed MMR (with a number above). Hi again. BTW, you could print the MultiMeasureRestNumber on a single Whole Measure Rest,

Re: Single Whole Measure Rest vs compressed MMR

2013-03-04 Thread Thomas Morley
2013/3/4 Xavier Scheuer x.sche...@gmail.com: On 28 February 2013 01:05, Thomas Morley thomasmorle...@googlemail.com wrote: Hi Xavier, do you think of sth like this: (snip) Hi Thomas, Thank you for your answer. I did not use the 'bound-padding property but I was overriding MMR

Re: Banjo example in docs renders without stems on 2.16.2-1 OSX

2013-03-04 Thread Thomas Morley
2013/3/5 Bayard Randel k...@nocturne.net.nz: I'm not top posting. % Stems should render based on example in docs, but do not on 2.16.2-1 in OSX. % http://lilypond.org/doc/v2.12/Documentation/user/lilypond/Banjo#Banjo \new TabStaff \set TabStaff.tablatureFormat =

Re: Banjo example in docs renders without stems on 2.16.2-1 OSX

2013-03-04 Thread Thomas Morley
2013/3/5 Bayard Randel k...@nocturne.net.nz: Ah apologies, I must have found my way to the old documentation from Google. That's working as expected, thank you. You're welcome. -Harm ___ bug-lilypond mailing list bug-lilypond@gnu.org

\box overlaps

2013-03-18 Thread Thomas Morley
Hi, with the following code the boxes overlap. 2.16.2 did not so. \version 2.17.12 \markup \box { \left-brace #80 \left-brace #80 } Regards, Harm attachment: markup-box.png___ bug-lilypond mailing list bug-lilypond@gnu.org

Re: spacing with arpeggio

2013-03-24 Thread Thomas Morley
2013/3/25 Kieren MacMillan kieren_macmil...@sympatico.ca: Hi all, This [reasonably-minimal] snippet shows a bug that's biting me a lot in my current engraving. Hi Kieran, adding \arpeggio to _all_ notes of the chord seems to solve it. \version 2.17.12 \language english global = { \time

programming error while inserting ChordNames in Staff

2013-03-28 Thread Thomas Morley
Hi, this code used to work with 2.16.2: \version 2.16.2 \new Staff \with { \accepts ChordNames } \new ChordNames \chordmode { \override ChordName #'Y-offset = #-1 c } With 2.17.12 an programming error occurs: GNU LilyPond 2.17.12 Processing `atest-22.ly' Parsing... Interpreting music...

Re: programming error while inserting ChordNames in Staff

2013-03-28 Thread Thomas Morley
2013/3/28 David Kastrup d...@gnu.org: Thomas Morley thomasmorle...@googlemail.com writes: [...] Why would you want to have ChordNames internal to a Staff? It was requested by a german user. He wants the ChordNames printed in a Staff. Is there a better way to achieve it? [...] I think if we

Re: programming error while inserting ChordNames in Staff

2013-03-28 Thread Thomas Morley
2013/3/28 David Kastrup d...@gnu.org: Thomas Morley thomasmorle...@googlemail.com writes: 2013/3/28 David Kastrup d...@gnu.org: Thomas Morley thomasmorle...@googlemail.com writes: [...] Why would you want to have ChordNames internal to a Staff? It was requested by a german user. He wants

Re: Erroneous slur output

2013-03-28 Thread Thomas Morley
2013/3/28 simon_albre...@lavabit.com: Hello again, one third contribution I have to make: in tight spacing situations combined with a clef change in another staff, slurs are oddly compressed or even, as in the example I added, reversed. Thanks for your excellent work and best regards

Re: programming error while inserting ChordNames in Staff

2013-03-30 Thread Thomas Morley
2013/3/30 Colin Hall colingh...@gmail.com Thomas, devs, what do you want to do with this thread? As I understand it, a user on the German forum has tried this, for good reasons, and it failed with a programming error. David explained that this is not surprising. So, we can treat this as

Re: \powerChords produces superscript 5 that is too large

2013-04-14 Thread Thomas Morley
2013/4/14 Eluze elu...@gmail.com: Greg Swinford wrote I'm not top posting. \version 2.14.2 newPowerChordSymbol = { c g -\markup { \super 5 } } chExceptions = #( append ( sequential-music-to-chord-exceptions newPowerChordSymbol #t) ignatzekExceptions) music = \chordmode {c:7

Re: \powerChords produces superscript 5 that is too large

2013-04-14 Thread Thomas Morley
2013/4/14 Eluze elu...@gmail.com: what's the intention to make the 5 bigger than the other numbers? Eluze I found http://lilypond-s-support-for-tablatures.3383434.n2.nabble.com/Power-chords-td5524246.html#a5524246 and https://codereview.appspot.com/2686041/ but no discussion about the size.

Re: vertically-aligned-dynamics-and-textscripts.ly

2013-05-26 Thread Thomas Morley
2013/5/26 Werner LEMBERG w...@gnu.org: Folks, here's a minor patch for an LSR snippet. Is it OK if I send such patches to this list so that the LSR editors can incorporate them into the database? Hi Werner, I don't mind to which list you send a request to change a LSR-snippet. Though, a

Re: vertically-aligned-dynamics-and-textscripts.ly

2013-05-27 Thread Thomas Morley
2013/5/27 Phil Holmes m...@philholmes.net: - Original Message - From: Thomas Morley thomasmorle...@gmail.com To: Werner LEMBERG w...@gnu.org Cc: bug-lilypond@gnu.org; Phil Holmes m...@philholmes.net Sent: Sunday, May 26, 2013 10:14 PM Subject: Re: vertically-aligned-dynamics

Wrong placed note-heads while modifiying 'staff-space

2013-05-28 Thread Thomas Morley
Reported in the german forum http://www.lilypondforum.de/index.php?topic=1443.0 Adjusting 'staff-space sometimes results in wrongly placed note-heads. Minimal example: \version 2.17.17 { \override Score.StaffSymbol #'staff-space = #(magstep -3) g b d' } Some observations: { % Minimale

Re: strokeFingerOrientations bug

2013-06-10 Thread Thomas Morley
2013/6/10 Rachael Thomas Carlson rachael.thomas.carl...@gmail.com: % Setting strokeFingerOrientations has no effect within a tabstaff \version 2.14.2 \score { \new TabStaff { \set strokeFingerOrientations = #'(left) c-\rightHandFinger #1 8 } } \layout { \context {

Re: If incipit has soprano clef, its staves are not aligned with main score

2013-06-12 Thread Thomas Morley
2013/6/12 Pothárn Imre potharn.i...@gmail.com: I'm not top posting. % When the incipit has a soprano clef, % the staff lines are not aligned % irrespective of the clef of main part \version 2.16.2 incipit = \markup { \score { { \clef soprano s4 \bar } \layout

Weird Stems with beam::align-with-broken-parts and beam::slope-like-broken-parts

2013-06-13 Thread Thomas Morley
Hi, the following code returns missing Stems. (A larger example would show not only missing but also all sorts of weird Stems. see: http://lists.gnu.org/archive/html/lilypond-user/2013-06/msg00334.html ) %% \version 2.17.20 \paper { %indent = 0

Re: Clef changes in retrograde, will only print a new clef. note positions will not change to accommodate the new clef

2013-06-23 Thread Thomas Morley
2013/6/23 Danny dbpolyph...@gmail.com: I'm not top posting. \version 2.16.2 % If a clef is changed in retrograde it only prints the new clef % It does not move the notes to their new locations on the staff % All notes here are the same pitch but during clef changes it is printed %

Issue 1006 is back

2013-06-24 Thread Thomas Morley
Hi, Issue 1006: Breathing sign collides with flat is back. \version 2.16.2 %\version 2.17.20 { d'' \breathe fes'' } Worked fine with 2.14.2 Bad with 2.16.2 and 2.17.20 -Harm ___ bug-lilypond mailing list bug-lilypond@gnu.org

Re: Issue 1006 is back

2013-06-24 Thread Thomas Morley
2013/6/25 Eluze elu...@gmail.com: synchronicity?! :D Am 25.06.2013 00:57, schrieb Thomas Morley: Hi, Issue 1006: Breathing sign collides with flat is back. \version 2.16.2 %\version 2.17.20 { d'' \breathe fes'' } Worked fine with 2.14.2 Bad with 2.16.2 and 2.17.20 -Harm

Re: programming error: cyclic dependency

2013-06-24 Thread Thomas Morley
2013/6/25 Eluze elu...@gmail.com: Felix Janda wrote Hello, the following minimal example seems to produce the correct result but lilypond raises a programming error: cyclic dependency: calculation-in-progress encountered for #'control-points (Slur). This might be related to Issue 2589.

Re: another out-of-memory

2013-07-01 Thread Thomas Morley
2013/7/1 David Kastrup d...@gnu.org: Keith OHara k-ohara5...@oco.net writes: Another case that eats memory on Windows came up in the verification test for issue 2910. There was no problem on Linux, and small changes avoid the problem on Windows. I have not been able to minimize smaller

Re: Markup in \tempo Is Broken with Lilypond 2.17.21

2013-07-01 Thread Thomas Morley
2013/7/1 David Kastrup d...@gnu.org: David Kastrup d...@gnu.org writes: Russell Cook astrop...@gmail.com writes: \version 2.17.21 \score { \new Voice { \time 4/4 \tempo \markup { Rubato \concat { \smaller \general-align #Y #DOWN \note #4 #1 \medium = ca. 76 } } s1 * 4 } } Prior

Re: possible error in manual chapter 2.4.3 Banjo

2013-07-06 Thread Thomas Morley
2013/7/6 Federico Bruni fedel...@gmail.com: [...] You are right, thanks for the report. However, I believe that we should just remove \stemDown, since the default view is not tabFullNotation and the example wants to demonstrate tablatureFormat. Also, \stemDown is already the default

Re: Clef changes in retrograde, will only print a new clef. note positions will not change to accommodate the new clef

2013-07-06 Thread Thomas Morley
2013/6/23 Thomas Morley thomasmorle...@gmail.com: 2013/6/23 Danny dbpolyph...@gmail.com: I'm not top posting. \version 2.16.2 % If a clef is changed in retrograde it only prints the new clef % It does not move the notes to their new locations on the staff % All notes here are the same

  1   2   3   4   5   >