Re: Ghostscipt failure 256

2017-04-08 Thread David Wright
On Sat 08 Apr 2017 at 16:29:01 (+0200), Thomas Morley wrote:
> 2017-04-08 16:15 GMT+02:00 Pieter Terpstra :
> > Thomas Morley wrote:
> >
> >> \markup \override #'(font-name . "Morris Roman,") "qwerty"
> >
> > Thanks, interesting your use of a comma after the fontname, never did that 
> > before but it works for this
> > Morris Roman font.
> 
> It was
> https://sourceforge.net/p/testlilyissues/issues/4591/
> 
> "Times New Roman" is another font where the comma is required: "Times
> New Roman,"

The probably looks stranger to those not used to Python's syntax
for a tuple containing one value, atuple = ("string1",)

Cheers,
David.

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


Re: Add more space after the composer

2017-04-08 Thread Son_V
Thanks. You got it.



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Add-more-space-after-the-composer-tp202089p202094.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: Add more space after the composer

2017-04-08 Thread Malte Meyn


Am 08.04.2017 um 19:25 schrieb Son_V:
> I've read the manual,
> http://lilypond.org/doc/v2.18/Documentation/notation/spacing-issues , and
> tried some, no success - may me suggest something?

Please always provide a minimal example.

\version "2.19.56"

\header {
  composer = "Some guy, probably dead"
}

\paper {
  markup-system-spacing.basic-distance = 20
}

\relative {
  c' d e f
}

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


RE: How to shorten a tail on an eighth note?

2017-04-08 Thread Joseph N. Srednicki
Thanks, Robert. Your suggestion works.

 

From: Robert Schmaus [mailto:robert.schm...@web.de] 
Sent: Saturday, April 8, 2017 12:23 PM
To: Joseph N. Srednicki 
Cc: Lilypond-User Mailing List 
Subject: Re: How to shorten a tail on an eighth note?

 

There is a technique to make the flag smaller in general:

 

\override Flag.font-size = #-2

 

for instance. That what you're looking for?

 

Best, Robert


On 8 Apr 2017, at 16:43, Joseph N. Srednicki  > wrote:

Hello:

 

See the example below. 

 

Is there a technique to shorten the tail of an eight note in such a situation?

 

The other techniques that I have used in this situation are to shift the note 
on the right more or to lengthen the stem of the note on the left. 

 

However, I am wondering if there is a tweak or other technique to shorten a 
tail?

 

I searched lilypond.org   and Google, but did not retrieve 
a helpful answer. If I missed the appropriate place in the documentation, I 
apologize.

 

Thanks for your help.

 

Joe Srednicki

 

 

\version "2.19.58"

\language "english"

 

global = {

  \key e \minor

  \numericTimeSignature

  \time 2/4 

}

 

rightOne = \relative c'' {

  \global

  c8 s4.| 

}

 

rightTwo = \relative c'' {

  \global

  \stemUp \shiftOn g8 s4. |

}

 

\score {

  \new PianoStaff 

   <<

\new Staff = "right" << \rightOne \\ \rightTwo >>

  >>

}

 

___
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: Add more space after the composer

2017-04-08 Thread Son_V
Thanks, but I wasn't able to find the answer to my question on that page.



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Add-more-space-after-the-composer-tp202089p202091.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: Add more space after the composer

2017-04-08 Thread Kieren MacMillan
Hi Son_V,

> I've read the manual,
> http://lilypond.org/doc/v2.18/Documentation/notation/spacing-issues , and
> tried some, no success - may me suggest something?

http://lilypond.org/doc/v2.19/Documentation/notation/custom-titles-headers-and-footers

Cheers,
Kieren.


Kieren MacMillan, composer
‣ website: www.kierenmacmillan.info
‣ email: i...@kierenmacmillan.info


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


Add more space after the composer

2017-04-08 Thread Son_V
Hi, I've tried with 
\markup \vspace #1 before the score.

I've read the manual,
http://lilypond.org/doc/v2.18/Documentation/notation/spacing-issues , and
tried some, no success - may me suggest something?

Thanks.



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Add-more-space-after-the-composer-tp202089.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: How to shorten a tail on an eighth note?

2017-04-08 Thread Malte Meyn


Am 08.04.2017 um 18:45 schrieb Malte Meyn:
> But I haven’t found a satisfying solution so maybe scaling
> the flag, changing horizontal spacing (force-hshift) and different stem
> lengths will give a good solution.

My suggestion:

rightOne = \relative c'' {
  \global
  \once \override Flag.stencil =
  #(lambda (grob) (ly:stencil-scale (ly:flag::print grob) 0.7 0.9))
  c8 s4.|
}

rightTwo = \relative c'' {
  \global
  \stemUp \shiftOn
  \once \override NoteColumn.force-hshift = 0.65
  g8 s4. |
}

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


Re: How to shorten a tail on an eighth note?

2017-04-08 Thread Malte Meyn


Am 08.04.2017 um 16:43 schrieb Joseph N. Srednicki:
> The other techniques that I have used in this situation are to shift the
> note on the right more or to lengthen the stem of the note on the left.

How about making the flag narrower?

  \once \override Flag.stencil =
  #(lambda (grob) (ly:stencil-scale (ly:flag::print grob) 0.6 0.8))

> However, I am wondering if there is a tweak or other technique to
> shorten a tail?

Try whiteout:

  \once \override Flag.whiteout = 3
  \once \override Flag.layer = -1

in the voice containing the a,

  \once \override Flag.layer = -2

in the other one. Maybe try different values for whiteout and different
stem lengths. But I haven’t found a satisfying solution so maybe scaling
the flag, changing horizontal spacing (force-hshift) and different stem
lengths will give a good solution.

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


Re: Phrasing Slur disappearing

2017-04-08 Thread DJF
It was difficult to decipher your very complex score, so I simplified it. It 
now appears to work, and I hope this helps you. 

--
Dan




test1.ly
Description: Binary data


> On Apr 8, 2017, at 10:25 AM, Gerard  wrote:
> 
> Dear All,
> 
> at a certain point in my score the phrasing slur disappears.
> In the attached example 1, two measures taken out of the score, the phrasing 
> slur is printed as it should.
> 
> As soon as I add the preceding measure, in example 2, the phrasing slur 
> disappears.
> All with the same warning while compiling.
> 
> Some advice is appreciated.
> 
> Thanks, Gerard
> 
> ___
> 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: How to shorten a tail on an eighth note?

2017-04-08 Thread Robert Schmaus
There is a technique to make the flag smaller in general:

\override Flag.font-size = #-2

for instance. That what you're looking for?

Best, Robert

> On 8 Apr 2017, at 16:43, Joseph N. Srednicki  wrote:
> 
> Hello:
>  
> See the example below.
>  
> Is there a technique to shorten the tail of an eight note in such a situation?
>  
> The other techniques that I have used in this situation are to shift the note 
> on the right more or to lengthen the stem of the note on the left.
>  
> However, I am wondering if there is a tweak or other technique to shorten a 
> tail?
>  
> I searched lilypond.org and Google, but did not retrieve a helpful answer. If 
> I missed the appropriate place in the documentation, I apologize.
>  
> Thanks for your help.
>  
> Joe Srednicki
>  
>  
> \version "2.19.58"
> \language "english"
>  
> global = {
>   \key e \minor
>   \numericTimeSignature
>   \time 2/4
> }
>  
> rightOne = \relative c'' {
>   \global
>   c8 s4.|
> }
>  
> rightTwo = \relative c'' {
>   \global
>   \stemUp \shiftOn g8 s4. |
> }
>  
> \score {
>   \new PianoStaff
><<
> \new Staff = "right" << \rightOne \\ \rightTwo >>
>   >>
> }
>  
> ___
> 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


Fwd: Re: Line break on a subtitle

2017-04-08 Thread caagr98




 Forwarded Message 
Subject:Re: Line break on a subtitle
Date:   Sat, 8 Apr 2017 16:41:55 +0200
From:   Vincenzo Auer 
To: caag...@gmail.com



Thanks, your answer got the goal.

2017-04-07 21:38 GMT+02:00 >:

I think you can use \column, \center-column, \right-column, or other
similar functions, depending on how you want it aligned:

\markup \column {
 "First line"
 "Second line"

}

On 04/07/17 21:35, Son_V wrote:

I've searched on google but I wasn't able to find an answer. How
can I break
a long subtitle into two lines of text? Thanks.



--
View this message in context:

http://lilypond.1069038.n5.nabble.com/Line-break-on-a-subtitle-tp202054.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




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


How to shorten a tail on an eighth note?

2017-04-08 Thread Joseph N. Srednicki
Hello:

 

See the example below. 

 

Is there a technique to shorten the tail of an eight note in such a
situation?

 

The other techniques that I have used in this situation are to shift the
note on the right more or to lengthen the stem of the note on the left. 

 

However, I am wondering if there is a tweak or other technique to shorten a
tail?

 

I searched lilypond.org and Google, but did not retrieve a helpful answer.
If I missed the appropriate place in the documentation, I apologize.

 

Thanks for your help.

 

Joe Srednicki

 

 

\version "2.19.58"

\language "english"

 

global = {

  \key e \minor

  \numericTimeSignature

  \time 2/4 

}

 

rightOne = \relative c'' {

  \global

  c8 s4.| 

}

 

rightTwo = \relative c'' {

  \global

  \stemUp \shiftOn g8 s4. |

}

 

\score {

  \new PianoStaff 

   <<

\new Staff = "right" << \rightOne \\ \rightTwo >>

  >>

}

 

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


Re: Line break on a subtitle

2017-04-08 Thread Kieren MacMillan
Hi Son_V,

Perhaps the thread ending with 
 is what 
you’re looking for? It includes some code by Harm which allows a multi-chunk 
markup to be reconstituted in different ways “at runtime".

Hope this helps,
Kieren.

> On Apr 8, 2017, at 9:33 AM, Son_V  wrote:
> I found a lot of interesting things but sorry, I was not able to find an
> answer to my humble question. 


Kieren MacMillan, composer
‣ website: www.kierenmacmillan.info
‣ email: i...@kierenmacmillan.info


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


Re: Ghostscipt failure 256

2017-04-08 Thread Thomas Morley
2017-04-08 16:15 GMT+02:00 Pieter Terpstra :
> Thomas Morley wrote:
>
>> \markup \override #'(font-name . "Morris Roman,") "qwerty"
>
> Thanks, interesting your use of a comma after the fontname, never did that 
> before but it works for this
> Morris Roman font.
>
> Kindly,
>
>Peter


It was
https://sourceforge.net/p/testlilyissues/issues/4591/

"Times New Roman" is another font where the comma is required: "Times
New Roman,"

See the link above for more details.

Cheers,
  Harm

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


Phrasing Slur disappearing

2017-04-08 Thread Gerard

Dear All,

at a certain point in my score the phrasing slur disappears.
In the attached example 1, two measures taken out of the score, the 
phrasing slur is printed as it should.


As soon as I add the preceding measure, in example 2, the phrasing slur 
disappears.

All with the same warning while compiling.

Some advice is appreciated.

Thanks, Gerard

\version "2.18.2"

\paper {
  # (set-paper-size "a4" 'landscape)
  top-margin = 1.5\cm
  bottom-margin = 1\cm
  inner-margin = 2\cm
  outer-margin = 1\cm
 
  %markup-system-spacing #'padding = #6

}
\layout {
}



testStaff = <<

\context Staff = "upper" {
 	
\clef "treble"
\key c \major
\time 3/4

% THIS SNIPPET PRODUCES THE CORRECT OUTPUT
% bar 28 - 30
\relative g'' << {\change Staff = "upper" \stemUp s4*1/10^\"Example 1" a4*9/10~ a4 s4*1/10 d4*9/10\(}
	 \\ 
	 { \relative g'' {\change Staff = "upper" \stemDown \tuplet 5/4 {fis32 a fis d a} \change Staff = "lower" \stemUp {d, a fis c}}
   \relative g'' {\change Staff = "upper" \stemDown {d fis d c} \change Staff = "lower" \stemUp {d, a fis c}}
   \relative g'' {\change Staff = "upper" \stemDown \tuplet 5/4 {a d a fis d} \change Staff = "lower" \stemUp {a fis d a}}
 }
   		 			>>
\relative g'' << {\change Staff = "upper" \stemUp s4*1/10 c4*9/10~ c4 g4\)}
 \\
 {\relative g'' {\change Staff = "upper" \stemDown \tuplet 5/4 {g32 c g e c} \change Staff = "lower" \stemUp {g e c g}}
  \relative g'' {\change Staff = "upper" \stemDown {e g e c} \change Staff = "lower" \stemUp {g e c g}}
  \relative g'' {\change Staff = "upper" \stemDown {g e c g} \change Staff = "lower" \stemUp {e c g e}}
 }
  >>
\break

% WHEN ADDING THE PRECEDING MEASURE THE PHRASING SLUR DISAPPEARS.
	\relative c'' {\change Staff = "upper" \stemDown \tuplet 5/4 {f32\^"Example 2" as f des as} \change Staff = "lower" \stemUp {es as, f des} \change Staff = "upper" \stemDown \tuplet 5/4 {f'' as f des as} \change Staff = "lower" \stemUp {es as, f des} \change Staff = "upper" \stemDown \tuplet 5/4 {f'' as f des as} \change Staff = "lower" \stemUp {es as, f des}}

	% bar 28 - 30
\relative g'' << {\change Staff = "upper" \stemUp s4*1/10 a4*9/10~ a4 s4*1/10 d4*9/10\(}
	 \\ 
	 { \relative g'' {\change Staff = "upper" \stemDown \tuplet 5/4 {fis32 a fis d a} \change Staff = "lower" \stemUp {d, a fis c}}
   \relative g'' {\change Staff = "upper" \stemDown {d fis d c} \change Staff = "lower" \stemUp {d, a fis c}}
   \relative g'' {\change Staff = "upper" \stemDown \tuplet 5/4 {a d a fis d} \change Staff = "lower" \stemUp {a fis d a}}
 }
   		 			>>
\relative g'' << {\change Staff = "upper" \stemUp s4*1/10 c4*9/10~ c4 g4\)}
 \\
 {\relative g'' {\change Staff = "upper" \stemDown \tuplet 5/4 {g32 c g e c} \change Staff = "lower" \stemUp {g e c g}}
  \relative g'' {\change Staff = "upper" \stemDown {e g e c} \change Staff = "lower" \stemUp {g e c g}}
  \relative g'' {\change Staff = "upper" \stemDown {g e c g} \change Staff = "lower" \stemUp {e c g e}}
 }
  >>


   
  }
  
  \context Staff = "lower" {
  \clef "bass"	
  \key c \major
  
  
  % script to be tested

  s2. *20
  
  }
  
   \context Staff = "Ped"{
   \clef "bass"
   \key c \major
	 

   % script to be tested
   
   s2. *20
   
   }

>>

\book{
  \score { <<  \testStaff >>}
}___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Ghostscipt failure 256

2017-04-08 Thread Pieter Terpstra
Thomas Morley wrote:

> \markup \override #'(font-name . "Morris Roman,") "qwerty"

Thanks, interesting your use of a comma after the fontname, never did that 
before but it works for this 
Morris Roman font. 

Kindly,

   Peter


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


Re: Line break on a subtitle

2017-04-08 Thread Thomas Morley
2017-04-08 15:33 GMT+02:00 Son_V :
> I found a lot of interesting things but sorry, I was not able to find an
> answer to my humble question.



Whats wrong with

\header {
  subtitle =
\markup \wordwrap {
  Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod
  tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim
  veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea
  commodo consequat. Duis aute irure dolor in reprehenderit in voluptate
  velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat
  cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id
  est laborum.
}
}

\markup \null

-Harm

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


Re: Diminuendo on the last note

2017-04-08 Thread Knute Snortum
\version "2.19.57"

{ c'4 c' c' c' \> <> \! }


---
Knute Snortum
(via Gmail)

On Sat, Apr 8, 2017 at 6:35 AM, Son_V  wrote:

> Searched, no results.
> I need to put a Diminuendo on the last notes of a score. How can I?
>
>
>
> --
> View this message in context: http://lilypond.1069038.n5.
> nabble.com/Diminuendo-on-the-last-note-tp202076.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


Diminuendo on the last note

2017-04-08 Thread Son_V
Searched, no results. 
I need to put a Diminuendo on the last notes of a score. How can I?



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Diminuendo-on-the-last-note-tp202076.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: Line break on a subtitle

2017-04-08 Thread Son_V
I found a lot of interesting things but sorry, I was not able to find an
answer to my humble question. 



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/Line-break-on-a-subtitle-tp202054p202075.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: Rootless slash chords, 2017 edition

2017-04-08 Thread Thomas Morley
2017-04-05 22:46 GMT+02:00 Dmitry :
> Thomas, thanks a lot for the solution!
>
> If you have a SF account, could I ask you please to add a link to this
> discussion to the SF issue?
> The only solution mentioned there doesn't work with modern Lilypond.
>
> Thx,
> Dmitry

Done.
https://sourceforge.net/p/testlilyissues/issues/3909/#888a

Cheers,
  Harm

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


Re: Ghostscipt failure 256

2017-04-08 Thread Thomas Morley
"

2017-04-07 0:58 GMT+02:00 Thomas Morley :
> 2017-04-06 18:11 GMT+02:00 Pieter Terpstra :
>> Dmytro O. Redchuk wrote:
>>
>> Thanks for your help Dmytro!
>>
>>> Do you use any custom fonts in the .ly?
>>
>> That seems to be the issue in the title i used Morris Roman, which was no 
>> problem before.
>> Always have used custom fonts. Some other fonts aslo seem to work fine on 
>> this file.
>
> Don't know where and how you specified the font and I don't have the
> font myself.
> Though, could you try "Morris,Roman" or "Morris Roman," ?
>
> Cheers,
>   Harm

I've now installed "Morris Roman"

\markup \override #'(font-name . "Morris Roman,") "qwerty"

Works on my machine.


Cheers,
  Harm

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