Peer review

2015-02-17 Thread Craig Dabelstein
Hi Lilyponders,

I'm not sure if this is an appropriate request for the group, but I was
wondering if anybody had the time to look at a sample part I have typeset
and make any comments regarding the typesetting. There may be many things
here that an experienced typesetter may see that need improvement, but my
eyes don't pick up.

Here is the link:
https://dl.dropboxusercontent.com/u/614749/Berlioz-02-piccolo.pdf

I do think the part looks a little bit compressed, but I have used the page
turn engraver (which I think is one of the greatest inventions of the
modern world!) for instrumental parts such as these.

Many thanks,

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


Re: Peer review

2015-02-17 Thread Jay Anderson
On Tue, Feb 17, 2015 at 7:30 PM, Craig Dabelstein
craig.dabelst...@gmail.com wrote:
 I'm not sure if this is an appropriate request for the group, but I was
 wondering if anybody had the time to look at a sample part I have typeset
 and make any comments regarding the typesetting. There may be many things
 here that an experienced typesetter may see that need improvement, but my
 eyes don't pick up.

It looks pretty clean to me. I'm not an expert either, but here are a
few things:
- 'attaca' should be placed below the staff.
- The rest at the end on page 3 looks a little short for a page turn
(maybe not). It's certainly doable, but it's worth playing around.
Moving the page turn will most likely cause it to flow onto more
pages.
- Mvt. I measure 59 has an A natural. The following measure has an
A-flat? Add the cautionary accidental. There are similar issues like
this as well (Mvt. I measures 89-90, 91-92 with f-flat, f-natural - I
didn't check further.).

 I do think the part looks a little bit compressed, but I have used the page
 turn engraver (which I think is one of the greatest inventions of the modern
 world!) for instrumental parts such as these.

A4 is fairly narrow which could be part of the problem as well.

-Jay

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


RE:strange phenomenon from guitar bends snippet Vol 145 issue 124

2015-02-17 Thread Stephen MacNeil
it was pointed out that i posted the modifications of the old
definitions.ily. I think the only changes since then have been aesthetics
-- and mainly to the tab portion of which, in this case since it's gone
makes no difference. anyway here is the new file with the changes.

modified version of ...

https://github.com/openlilylib/openlilylib/tree/master/notation-snippets/guitar-string-bending

%%% no tab


\version 2.16.2 % absolutely necessary!

\header {

snippet-title = Guitar string bending notation

snippet-author = Marc Hohl

snippet-source = http://code.google.com/p/lilypond/issues/detail?id=1196;

snippet-description = \markup {

This snippet allows to typeset bend symbols -

typically used on guitar - on Staff and TabStaff.

While issue 1196 aims to create a specific engraver

for bends, this snippet leverages the slur engraver.

}

% add comma-separated tags to make searching more effective:

tags = guitar, bend, string bending

% is this snippet ready? See meta/status-values.md

status = buggy

}

% TODO:

% - draw dashed line for \holdBend

% - enable consecutive bend ups

% - simplify \preBend and \holdBend usage

% - ...

#(display \nbend.ly ─ 2011-03-11 (revised: 2013-07-16)\n\n)

%%% sizes and values (to be changed/adapted):

#(define bend-line-thickness 0.1)

#(define bend-arrow-curvature-factor 0.35)

%#(define y-distance-from-tabstaff-to-arrow-tip 2.75)

#(define consecutive-bends-arrow-height 2.75)

#(define bend-arrowhead-height 1.25)

#(define bend-arrowhead-width 0.8)

#(define y-distance-from-staffline-to-arrow 0.35)

%%% internal commands

#(define (quarterdiff-string quarterdiff)

(let ((wholesteps (floor (/ quarterdiff 4

(string-append (case wholesteps

((0) )

(else (number-string wholesteps)))

(case (modulo quarterdiff 4)

((1) ¼)

((2) ½)

((3) ¾)

(else )

%%% markup commands

#(define-markup-command (pointedSlur layout props thickness bx by mx my ex
ey)

(number? number? number? number? number? number? number?)

(interpret-markup layout props

(markup #:postscript

(ly:format ~f setlinewidth

~f ~f moveto

~f ~f lineto

~f ~f lineto stroke thickness bx by mx my ex ey

#(define-markup-command (drawBendArrow layout props

thickness begin-x middle-x end-x begin-y end-y arrow-lx arrow-rx arrow-y
outstring)

(number? number? number? number? number? number? number? number? number?
string?)

(interpret-markup layout props

(markup #:postscript

(ly:format ~f setlinewidth

~f ~f moveto

~f ~f lineto

~f ~f ~f ~f ~f ~f curveto

stroke

~f ~f moveto

~f ~f lineto

~f ~f lineto

closepath fill

thickness

begin-x begin-y

middle-x begin-y

middle-x begin-y end-x begin-y end-x arrow-y

arrow-lx arrow-y

end-x end-y

arrow-rx arrow-y)

#:hspace 0

#:translate (cons (- end-x 1.2) (+ end-y 0.5))

#:fontsize -2

#:bold

;; changed:

;#:center-column (outstring)

outstring

)))

#(define-markup-command (drawHoldBendWithArrow layout props

thickness begin-x begin-y end-x end-y arrow-lx arrow-rx arrow-y outstring)

(number? number? number? number? number? number? number? number? string?)

(interpret-markup layout props

(markup #:postscript

(ly:format ~f setlinewidth

~f ~f moveto

~f ~f lineto

stroke

~f ~f moveto

~f ~f lineto

~f ~f lineto

closepath fill

~f ~f moveto

~f ~f lineto

stroke

thickness

begin-x begin-y

begin-x arrow-y

arrow-lx arrow-y

begin-x end-y

arrow-rx arrow-y

begin-x end-y

end-x end-y)

#:hspace 0

#:translate (cons (- begin-x 1.2) (+ end-y 0.5))

#:fontsize -2

;; Why does it work here??

#:bold #:center-column (outstring

#(define-markup-command (drawHoldBendArrowOnly layout props

thickness begin-x begin-y end-x end-y arrow-lx arrow-rx arrow-y outstring)

(number? number? number? number? number? number? number? number? string?)

(interpret-markup layout props

(markup #:postscript

(ly:format ~f setlinewidth

~f ~f moveto

~f ~f lineto

stroke

~f ~f moveto

~f ~f lineto

~f ~f lineto

closepath fill

thickness

begin-x begin-y

begin-x arrow-y

arrow-lx arrow-y

begin-x end-y

arrow-rx arrow-y)

#:hspace 0

#:translate (cons (- begin-x 1.2) (+ end-y 0.5))

#:fontsize -2

;; Why does it work here??

#:bold #:center-column (outstring

%% The markup-command 'draw-dashed-line' was implemented with version 2.17.x

%% TODO: use 'draw-dashed-line' instead. See also 'tie::draw-hold-bend'
below.

#(define-markup-command (drawDashedLine layout props

thickness begin-x end-x line-y)

(number? number? number? number?)

;; TODO: draws a full line instead of a dashed line

(interpret-markup layout props

(markup #:postscript

(ly:format ~f setlinewidth

~f ~f moveto

~f ~f lineto

stroke

thickness begin-x line-y end-x line-y

%%% callbacks

#(define (slur::draw-pointed-slur grob)

(let* ((control-points (ly:grob-property grob 'control-points))

(direction (ly:grob-property grob 'direction))

(first-point (car control-points))

(second-point (cadr control-points))

(third-point (caddr control-points))

(forth-point (cadddr control-points))


Re: Strange d.g. notation

2015-02-17 Thread RomanticStrings
From the Society of Music Theory discuss group:

Karen Bottge commented on Strange d.g notation


Strange d.g notation

Hi Conor,

 d.g. means viola di gamba (or cello), which sounds at the octave below.
(It appears that d.g. is missing from measures 70-71!).

Karen

Read more or reply here:
https://discuss.societymusictheory.org/discussion/comment/279#Comment_279
Menu Jacques wrote
 Hello folks,
 
 In the viola score of a Telemann quartet in G minor, I find this notation.
 Does anyone know what it means?
 
 Thanks for your help!
 
 JM
 
 
 ___
 lilypond-user mailing list

 lilypond-user@

 https://lists.gnu.org/mailman/listinfo/lilypond-user
 
 
 Strange d.g. notation.png (383K)
 lt;http://lilypond.1069038.n5.nabble.com/attachment/171976/0/Strange%20d.g.%20notation.pnggt;





--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Strange-d-g-notation-tp171976p172002.html
Sent from the User mailing list archive at Nabble.com.

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


Re: Staffs extending past the end of music

2015-02-17 Thread Tyler A Stank

On 02/16/2015 06:29 PM, Simon Albrecht wrote:

OK.
I think what you want is \RemoveEmptyStaves, to be inserted in
\layout{
  \context{ \Staff
  \RemoveEmptyStaves } }


It worked!  Thanks.


Tyler Stank

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


RE:strange phenomenon from guitar bends snippet Vol 145 issue 124

2015-02-17 Thread Federico Bruni
Il giorno lun 16 feb 2015 alle 20:05, Stephen MacNeil 
classicalja...@gmail.com ha scritto:
I noticed in a past post Vol 145 issue 124 you were trying to remove 
tab from the guitar bends. Anyway I don't ever use tab myself and 
modified the ily file so there is no tab. if you still need it or 
find it helpful here it is. Let me know if it was helpful or if you 
found a better solution.


cheers
Stephen

\version 2.16.2 % absolutely necessary!

\header {
snippet-title = Guitar string bending notation
snippet-author = Marc Hohl
snippet-source = 
http://code.google.com/p/lilypond/issues/detail?id=1196;


Hi Stephen

You know that the new home of the old bend.ly is this one?
https://github.com/openlilylib/openlilylib/tree/master/notation-snippets/guitar-string-bending

I think that a diff file of your changes compared to that version would 
be more useful.





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


Re: Strange d.g. notation

2015-02-17 Thread Jacques Menu
Hello Conor,

Thanks to you and Karen for the enlightment!

JM

 Le 17 févr. 2015 à 15:01, RomanticStrings conor.p.c...@gmail.com a écrit :
 
 From the Society of Music Theory discuss group:
 
 Karen Bottge commented on Strange d.g notation
 
 
 Strange d.g notation
 
 Hi Conor,
 
 d.g. means viola di gamba (or cello), which sounds at the octave below.
 (It appears that d.g. is missing from measures 70-71!).
 
 Karen
 
 Read more or reply here:
 https://discuss.societymusictheory.org/discussion/comment/279#Comment_279
 Menu Jacques wrote
 Hello folks,
 
 In the viola score of a Telemann quartet in G minor, I find this notation.
 Does anyone know what it means?
 
 Thanks for your help!
 
 JM
 
 
 ___
 lilypond-user mailing list
 
 lilypond-user@
 
 https://lists.gnu.org/mailman/listinfo/lilypond-user
 
 
 Strange d.g. notation.png (383K)
 lt;http://lilypond.1069038.n5.nabble.com/attachment/171976/0/Strange%20d.g.%20notation.pnggt;
 
 
 
 
 
 --
 View this message in context: 
 http://lilypond.1069038.n5.nabble.com/Strange-d-g-notation-tp171976p172002.html
 Sent from the User mailing list archive at Nabble.com.
 
 ___
 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: Indenting arbitrary lines

2015-02-17 Thread David Bellows
 Could you put all the lines that are continuations in a single score block, 
 and have multiple score blocks?  You could then try a negative indent for the 
 first line to outdent it.

[I just realized I didn't post this to the list. Plus I'm hoping for
some more responses]

I think if I were doing this manually that would probably work.
Unfortunately changing my software to generate multiple score blocks
would require a lot of work that I'm not sure is justified for just
this one thing. I was lucky that I was able to insert the basic
acrostic idea without having to rewrite any of the infrastructure.

On Sat, Feb 14, 2015 at 8:27 AM, Phil Holmes m...@philholmes.net wrote:
 - Original Message - From: David Bellows davebell...@gmail.com
 To: lilypond-user lilypond-user@gnu.org
 Sent: Saturday, February 14, 2015 4:22 PM
 Subject: Indenting arbitrary lines



 I have an odd request that I'm hoping someone will have some ideas for.

 1. I want all lines to be indented (like the first line).
 2. Except when I specifically tell Lilypond not to indent. Like the
 following:

 c4 d4 \bar\break \don'tindentthisnextbit e4 f4 g4 ...

 The project I'm working can generate musical acrostics (originally
 mesostics but I've expanded a bit) and need to be able to format
 staves in this manner in order to differentiate between a line that is
 continuing from the previous one (indent) and one where the first note
 is part of the acrostic (no indent). In case anyone's curious (and to
 help visualize):
 http://www.reddit.com/r/musicandpoetry/comments/2vsg6u/musical_mesostics/

 And my first pass at doing it myself (without the indentation -- you
 can see the problem):
 https://drive.google.com/file/d/0B5Jk3Yrq1rrdaWNCVVJYMWtkdnM/view



 Could you put all the lines that are continuations in a single score
 block, and have multiple score blocks?  You could then try a negative indent
 for the first line to outdent it.

 --
 Phil Holmes

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


Re: \sustainOff\sustainOn produces inconsistent MIDI results

2015-02-17 Thread Kevin Barry
On Sun, Feb 15, 2015 at 9:58 AM, bensonby benso...@gmail.com wrote:

 I have the same problem too. As a quick solution, I split the note into two
 with a tie, one for sustainOff and one for sustainOn.


Does that not add an extra note column (affecting layout)?
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Indenting arbitrary lines

2015-02-17 Thread Kieren MacMillan
Hi David,

 I think if I were doing this manually that would probably work.
 Unfortunately changing my software to generate multiple score blocks
 would require a lot of work that I'm not sure is justified for just
 this one thing. I was lucky that I was able to insert the basic
 acrostic idea without having to rewrite any of the infrastructure.

Then you probably need to use explicit X-offset adjustments — see 
http://lilypond.org/doc/v2.19/Documentation/notation/explicit-staff-and-system-positioning
 for more details.

Hope this helps!
Kieren.
___

Kieren MacMillan, composer
www:  http://www.kierenmacmillan.info
email:  i...@kierenmacmillan.info


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