Re: musicxmll2ly

2017-04-25 Thread Federico Bruni



Il giorno lun 24 apr 2017 alle 22:28, Ralph Fröhlich 
 ha scritto:
when I try to convert musicxml to lilypond 2.18. with frescobaldi 
3.0. (windows) there is no output.


in frescobali I use the dialog for import with $musicxml2ly --nd 
--nrp --npl --no-beaming -m $filename


do I need any information for the output file?

best regards




What happens if you run the same command (replace $filename with the 
actual file name) in the command prompt?





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


Re: is the lyric tie tweakable?

2017-04-25 Thread David Nalesnik
On Tue, Apr 25, 2017 at 7:45 PM, David Nalesnik
 wrote:
> On Tue, Apr 25, 2017 at 7:16 PM, Kieren MacMillan
>  wrote:
>> Hi David,
>>
>>> \markup \tied-lyric \override #'(word-space . 2) #"le,~au”
>>
>> Bingo! Didn’t even need to add the extra parameters!
>>
>>> Don't know at the moment how to make this less cumbersome.
>>
>> I don’t need this to be less cumbersome — this completely solves my original 
>> problem.
>> (But this exercise did serve to fractionally increase my Scheme-fu…)
>>
>
> Nice to hear!
>
> In any case, here's an experiment.  It allows for varying the
> parameters within the lyricmode expression:
>
> \version "2.19.59"
>
> #(define (lyric-text::special-print overrides)
>(lambda (grob)
>  (let ((text (ly:grob-property grob 'text)))
>(grob-interpret-markup
> grob
> (if (string? text)
> (fold
>  make-override-markup
>  (make-tied-lyric-markup text)
>  overrides)
> text)
>
> tiedLyricOverrides =
> #(define-music-function (overrides) (list?)
>#{
>  \override Lyrics.LyricText.stencil = #(lyric-text::special-print 
> overrides)
>#})
> {
>   \relative {
> \autoBeamOff
> r8 b' c fis, fis c' b e,
>   }
>   \addlyrics {
> \tiedLyricOverrides #'((word-space . 5) (left-pad . 3))
> Che~in ques -- ta~e~in quel -- l'al -- tr'on -- da
>   }
> }
>
> %%
>
> Of course, you'd need to add the left-pad property and functionality
> to \tied-lyric for it to have any effect.
>

One more thing: you can use \once too.

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


Re: is the lyric tie tweakable?

2017-04-25 Thread David Nalesnik
On Tue, Apr 25, 2017 at 7:16 PM, Kieren MacMillan
 wrote:
> Hi David,
>
>> \markup \tied-lyric \override #'(word-space . 2) #"le,~au”
>
> Bingo! Didn’t even need to add the extra parameters!
>
>> Don't know at the moment how to make this less cumbersome.
>
> I don’t need this to be less cumbersome — this completely solves my original 
> problem.
> (But this exercise did serve to fractionally increase my Scheme-fu…)
>

Nice to hear!

In any case, here's an experiment.  It allows for varying the
parameters within the lyricmode expression:

\version "2.19.59"

#(define (lyric-text::special-print overrides)
   (lambda (grob)
 (let ((text (ly:grob-property grob 'text)))
   (grob-interpret-markup
grob
(if (string? text)
(fold
 make-override-markup
 (make-tied-lyric-markup text)
 overrides)
text)

tiedLyricOverrides =
#(define-music-function (overrides) (list?)
   #{
 \override Lyrics.LyricText.stencil = #(lyric-text::special-print overrides)
   #})
{
  \relative {
\autoBeamOff
r8 b' c fis, fis c' b e,
  }
  \addlyrics {
\tiedLyricOverrides #'((word-space . 5) (left-pad . 3))
Che~in ques -- ta~e~in quel -- l'al -- tr'on -- da
  }
}

%%

Of course, you'd need to add the left-pad property and functionality
to \tied-lyric for it to have any effect.

Hope this is useful.  I'm not sure!

David

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


Re: is the lyric tie tweakable?

2017-04-25 Thread Kieren MacMillan
Hi David,

> \markup \tied-lyric \override #'(word-space . 2) #"le,~au”

Bingo! Didn’t even need to add the extra parameters!

> Don't know at the moment how to make this less cumbersome.

I don’t need this to be less cumbersome — this completely solves my original 
problem.
(But this exercise did serve to fractionally increase my Scheme-fu…)

Thanks,
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


Re: is the lyric tie tweakable?

2017-04-25 Thread David Nalesnik
On Tue, Apr 25, 2017 at 6:38 PM, Kieren MacMillan <
kieren_macmil...@sympatico.ca> wrote:

> Hi David,
>
> \override is actually a markup command here,
>
> and as such needs to be preceded by \markup.
>
>
> But then it doesn’t execute the lyric tie function *at all*:
>
>
>
>
\markup \tied-lyric \override #'(word-space . 2) #"le,~au"

Don't know at the moment how to make this less cumbersome.

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


Re: is the lyric tie tweakable?

2017-04-25 Thread Kieren MacMillan
Hi David,

> \override is actually a markup command here,
> and as such needs to be preceded by \markup.

But then it doesn’t execute the lyric tie function *at all*:



Thanks,
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


Re: is the lyric tie tweakable?

2017-04-25 Thread David Nalesnik
On Tue, Apr 25, 2017 at 5:50 PM, Kieren MacMillan
 wrote:
> Hi David,
>
>> These properties are accessed like
>> \override #'(left-pad . -1)
>> as any markup override.
>
> I tried that, of course — it returns
>
> error: not a key
>   \override
> #'(left-pad . -1) le,~au soir, __ à __ la chan -- del -- le, __
>
> This is in a \lyricmode block, if that makes a difference.
>

\override is actually a markup command here, and as such needs to be
preceded by \markup.

-David

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


Re: is the lyric tie tweakable?

2017-04-25 Thread Kieren MacMillan
Hi David,

> These properties are accessed like
> \override #'(left-pad . -1)
> as any markup override.

I tried that, of course — it returns

error: not a key
  \override 
#'(left-pad . -1) le,~au soir, __ à __ la chan -- del -- le, __

This is in a \lyricmode block, if that makes a difference.

Thanks,
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


Re: is the lyric tie tweakable?

2017-04-25 Thread David Nalesnik
On Tue, Apr 25, 2017 at 4:09 PM, Kieren MacMillan
 wrote:
> Hi David (et al.),
>
 Is the built-in** lyric tie/elision tweakable?
>>
>>> There's no LyricTie grob, so no convenient way to tweak it.   You
>>> could modify "tied-lyric" in scm/define-markup-commands.scm, since
>>> that's what's engaged with the tilde.
>>
>> I can’t seem to figure out how to add left-pad and right-pad as properties 
>> (with default 0)
>
> Okay, I believe I’ve solved that problem:
>
>   #:properties ((word-space)
> (left-pad 0)
> (right-pad 0))
>
> But how do I tweak the parameter in my input? I’ve tried things like
>
> \tweak left-pad #-1 le,~au
>

These properties are accessed like

\override #'(left-pad . -1)

as any markup override.

-David

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


Re: Parenthesize bass figures as a whole

2017-04-25 Thread Thomas Morley
2017-04-25 12:45 GMT+02:00 Lukas-Fabian Moser :
> Hello,
>
> I hope I don't mess up completely, this being my first posting to this list
> (which I nevertheless often consulted before).

You know you can insert brackets doing what you want?

To have them look like rounded paranthesis is more difficult.
Currently I've only an ugly hack for you (see below), mayne someone
comes up with a better idea.

hack =
\override BassFigureBracket.stencil =
  #(lambda (grob)
 (let* ((default-stil (ly:enclosing-bracket::print grob))
(x-ext (ly:stencil-extent default-stil X))
(y-ext (ly:stencil-extent default-stil Y))
(thick (ly:grob-property grob 'thickness 0.1))
(height-limit 0.7)
(ratio 0.15)
(padding -0.3)
;; taken from bezier-bow.cc
(F0_1
  (lambda (x) (* (/ 2 PI) (atan (* PI x 0.5)
(bow-height
  (lambda (w h_inf r_0) (F0_1 (* (/ (* w r_0) h_inf) h_inf
;; length from bow start to end
(lngth (abs (- (cdr y-ext) (car y-ext
(angularity 0.5)
(height (bow-height lngth height-limit ratio)))
   (parenthesize-stencil
 (make-transparent-box-stencil x-ext y-ext)
 thick
 height
 angularity
 padding)))

tst-figures =
\figuremode {
  <[2]>
  <[2 4]>
  <[2 4 5]>
  <[2 4 5 7]>
  <[2 4 5 7 8]>
  <[2] [4 5 7 8]>
  <[2 4] [5 7 8]>
}

\new FiguredBass {
  \tst-figures
  \hack
  \tst-figures
}

Cheers,
  Harm

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


Re: is the lyric tie tweakable?

2017-04-25 Thread Kieren MacMillan
Hi David (et al.),

>>> Is the built-in** lyric tie/elision tweakable?
> 
>> There's no LyricTie grob, so no convenient way to tweak it.   You
>> could modify "tied-lyric" in scm/define-markup-commands.scm, since
>> that's what's engaged with the tilde.
> 
> I can’t seem to figure out how to add left-pad and right-pad as properties 
> (with default 0)

Okay, I believe I’ve solved that problem:

  #:properties ((word-space)
(left-pad 0)
(right-pad 0))

But how do I tweak the parameter in my input? I’ve tried things like

\tweak left-pad #-1 le,~au

to no avail. Any help appreciated.

Thanks,
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


Re: Slur inside tuplet bracket

2017-04-25 Thread Andrew Bernard
Hi Manuela,

That works of course. I think I use \shape and \shapeII more than anyone in
existence!  I find these functions necessary and indispensable.

But I suppose the difficulty of asking questions is hat often we don't make
out implicit assumptions explicit. What was rather hoping is that, what you
would naturally expect when telling the tuplet bracket to avoid the slur is
that it should actually, ah, avoid the slur, yet it manifestly does not.

So is this a bug or a defect or just bad behaviour in lilypond? What is
really going here? I confess I have not done thorough searches of the bug
list about this before posting, but perhaps someone who knows could
illuminate?

Andrew



On 25 April 2017 at 16:29, Manuela Gößnitzer 
wrote:

> Hi Andrew,
>
> sorry for the noise.
> You may add TupletBracket.staff-padding, e.g.
>
> \version "2.19.48"
> {
>   \override TupletBracket.avoid-slur = #'outside
>   \override TupletBracket.staff-padding = #3
>   \shape #'((0 . -3.5) (0 . -2.5) (0 . -2) (0 . -2)) Slur
>   \tuplet 5/4 { c''( bes' fis' d' ges') }
> }
>
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: I want my fs back!

2017-04-25 Thread Jeffery Shivers
On Tue, Apr 25, 2017 at 6:12 AM Stephan Zitzmann 
wrote:

> I have the problem with many files.
>
> [...]


>
> The problem is after incuding the resulting pdf in Latex with
> \includegraphics all the ff in the lyrics text are missing.
>
> So I rendered the lilypondfile as a svg, opened it with inkscape, convertet
> the file to pdf, and included it in the same way in Latex. Now I have the
> fs.
>
> So I guess this is a problem of lilypond.
>

It seems like that *isn't* the case though, considering you found a
workaround that fit after that part of the process.

Is it possible to attache files on this mailinglist?


Of course, but better if you can embed a tiny example.

Search "LaTeX remove ligatures" and you'll probably find your solution is
to use the *newunicodechar* package.
Best,
Jeffery
-- 

Jeffery Shivers
 jefferyshivers.com
 soundcloud.com/jefferyshivers
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: I want my fs back!

2017-04-25 Thread Jeffery Shivers
On Tue, Apr 25, 2017 at 7:40 AM Jacques Menu Muzhic 
wrote:

> Hello,
>
> If I’m not mistaken, LaTeX handles ff in a special way, i.e. as a single
> glyph, to have them closer to each other than they would otherwise be.
>
> Could that be related to your problem?


I've always had a similar thing happen when the content is extracted from
any LaTeX-typesetted pdf (for "ff" and "ft") in any way.

Never bothered to look into why (or rather how) this happens, but I'm sure
the problem/fix is in that part of the process.

Best,
Jeffery

> --

Jeffery Shivers
 jefferyshivers.com
 soundcloud.com/jefferyshivers
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: I want my fs back!

2017-04-25 Thread Jacques Menu Muzhic
Hello,

If I’m not mistaken, LaTeX handles ff in a special way, i.e. as a single glyph, 
to have them closer to each other than they would otherwise be.

Could that be related to your problem?

JM

> Le 25 avr. 2017 à 12:24, Manuela  a écrit :
> 
> This problem has already been discussed in the German Lilypond forum, I had
> the same problem. Hopefully this thread will show up again in the archive.
> 
> 
> 
> --
> View this message in context: 
> http://lilypond.1069038.n5.nabble.com/I-want-my-fs-back-tp202631p202635.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: Feedback on cross stave slur

2017-04-25 Thread Michiel Sikma
Hi Andrew,

Thanks on both counts, I didn't realize there wasn't supposed to be a slur
there at all. If there isn't one in Beethoven's manuscript I won't add one
either. My intention is to just engrave an urtext version.

You are right that A4 is just too small. I'm still not sure what to do.
Actually, I already set the global magnification to 89/100 - because
without it, I couldn't comfortably do the long 32rd note passages in
Op.111, which I worked on earlier. I might reduce it just a bit more, so
that it's smaller but at least has decent margins.

I'm actually surprised that the 1st edition you pointed me to has two
separate slurs over the 8.-16 and 4-8, rather than one big slur over both.
If that's how Beethoven wrote it I've got a lot of fixing to do...Times
like this is when I wish I had a nice high quality manuscript like I did
for Op.111...

Michiel


Let's Deliver

http://letsdeliver.com/

m...@letsdeliver.com

On Tue, Apr 25, 2017 at 2:03 PM, Andrew Bernard 
wrote:

> Hi Michiel,
>
> The Artaria engraving of about 1819 is freely available at IMSLP. This is
> very beautifully done, a model of excellence. Possibly better than finding
> the MS because I suspect it contains many corrections.
>
> http://imslp.org/wiki/Piano_Sonata_No.29,_Op.106_(Beethoven,_Ludwig_van)
>
> No slur is present over the sequence you referred to.
>
> If I were engraving this work, I would be doing it off this edition. The
> large amount of 'air' in the edition is something I find very important.
>
>
> Andrew
>
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Parenthesize bass figures as a whole

2017-04-25 Thread Lukas-Fabian Moser
Hello,

I hope I don't mess up completely, this being my first posting to this list
(which I nevertheless often consulted before).

I'm looking for a way to parenthesize Bass figures in such a way that
combinations of two or more figures get one single large pair of
parentheses. If I parenthesize the BassFigure stencil as seen below, I get
almost what I want, but each figure has its own pair of parentheses.

\layout {
  \override Score.BassFigure.stencil = #(lambda (grob)
(parenthesize-stencil (ly:text-interface::print grob) 0.1 0.4 0.4 0.1 ))
}
\new FiguredBass \figuremode {
  <6> % great
  <4 2> % gets two small pairs instead of one large
}


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


Re: New german LilyPond forum | Neues deutschsprachiges LilyPond-Forum

2017-04-25 Thread Manuela Gößnitzer
Ich habe drei verschiedene Browser ausprobiert (Firefox, Chrome, IE), kein
einziger hatte ein Problem damit, auf das Forum zuzugreifen. Meiner
Erfahrung nach kann ein veraltetes Datum im Betriebssystem diese
Fehlermeldung verursachen.

Am 25. April 2017 um 12:22 schrieb :

> Da kommen insgesamt gerade sehr wirre Sachen, ich warte jetzt erst Mal ab,
> wie das in paar Stunden aussieht.
>
> > -Ursprüngliche Nachricht-
> > Von: lilypond-user [mailto:lilypond-user-
> > bounces+zs.hassia=gmx...@gnu.org] Im Auftrag von Urs Liska
> > Gesendet: Dienstag, 25. April 2017 12:16
> > An: lilypond-user@gnu.org
> > Betreff: Re: New german LilyPond forum | Neues deutschsprachiges
> > LilyPond-Forum
> >
> >
> >
> > Am 25.04.2017 um 12:10 schrieb Stephan Zitzmann:
> > > Ich habe jetzt es mal mit Chrome probiert,  weil ich mit dem noch nie
> > > auf dem Forum war. Es sieht  so aus. Siehe Anhang.
> >
> > Was erscheint nach "erweitert"?
> >
> >
> > ___
> > 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


Re: I want my fs back!

2017-04-25 Thread Manuela
This problem has already been discussed in the German Lilypond forum, I had
the same problem. Hopefully this thread will show up again in the archive.



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/I-want-my-fs-back-tp202631p202635.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


AW: New german LilyPond forum | Neues deutschsprachiges LilyPond-Forum

2017-04-25 Thread zs.hassia
Da kommen insgesamt gerade sehr wirre Sachen, ich warte jetzt erst Mal ab,
wie das in paar Stunden aussieht. 

> -Ursprüngliche Nachricht-
> Von: lilypond-user [mailto:lilypond-user-
> bounces+zs.hassia=gmx...@gnu.org] Im Auftrag von Urs Liska
> Gesendet: Dienstag, 25. April 2017 12:16
> An: lilypond-user@gnu.org
> Betreff: Re: New german LilyPond forum | Neues deutschsprachiges
> LilyPond-Forum
> 
> 
> 
> Am 25.04.2017 um 12:10 schrieb Stephan Zitzmann:
> > Ich habe jetzt es mal mit Chrome probiert,  weil ich mit dem noch nie
> > auf dem Forum war. Es sieht  so aus. Siehe Anhang.
> 
> Was erscheint nach "erweitert"?
> 
> 
> ___
> 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: New german LilyPond forum | Neues deutschsprachiges LilyPond-Forum

2017-04-25 Thread Manuela
Hast du deine Systemzeit richtig eingestellt?

Grüße,
Manuela



--
View this message in context: 
http://lilypond.1069038.n5.nabble.com/New-german-LilyPond-forum-Neues-deutschsprachiges-LilyPond-Forum-tp202624p202633.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: New german LilyPond forum | Neues deutschsprachiges LilyPond-Forum

2017-04-25 Thread Urs Liska


Am 25.04.2017 um 12:10 schrieb Stephan Zitzmann:
> Ich habe jetzt es mal mit Chrome probiert,  weil ich mit dem noch nie auf
> dem Forum war. Es sieht  so aus. Siehe Anhang.

Was erscheint nach "erweitert"?


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


I want my fs back!

2017-04-25 Thread Stephan Zitzmann
I have the problem with many files.

First at all the example:

[example]
\version "2.19.59"
\language "deutsch"
global = {
  \key c \major
  \time 4/4
}

sopranoVoice = \relative c'' {
  \global

h4 h h h

h h h2


}

verse = \lyricmode {
 Jä -- ger Piff -- paff steht im Busch.

}

\score {
   { \sopranoVoice }
  \addlyrics { \verse }


}
[/example]


The problem is after incuding the resulting pdf in Latex with
\includegraphics all the ff in the lyrics text are missing.

So I rendered the lilypondfile as a svg, opened it with inkscape, convertet
the file to pdf, and included it in the same way in Latex. Now I have the
fs.

So I guess this is a problem of lilypond. 

Is it possible to attache files on this mailinglist?

Regards


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


Re: New german LilyPond forum | Neues deutschsprachiges LilyPond-Forum

2017-04-25 Thread Stephan Zitzmann
Ich habe jetzt es mal mit Chrome probiert,  weil ich mit dem noch nie auf
dem Forum war. Es sieht  so aus. Siehe Anhang.
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: New german LilyPond forum | Neues deutschsprachiges LilyPond-Forum

2017-04-25 Thread Malte Meyn


Am 25.04.2017 um 11:39 schrieb Malte Meyn:
> 
> 
> Am 25.04.2017 um 11:36 schrieb Urs Liska:
>> So weit *ich* das sehen kann, ist die Seite mit einem Let's
>> Encrypt-Zertifikat versehen (s. Anhang).
> 
> Richtig. Ich hoste bei Uberspace und habe ein Let’s-Encrypt-Zertifikat
> für archive.lilypondforum.de und lilypondforum.de eingerichtet.

archiv, nicht archive

> 
>> Musst du vielleicht den Browser-Cache leeren oder ein veraltetes, nicht
>> mehr verwendetes Zertifikat entfernen?
> 
> Scheint so, mein Hoster Uberspace hat mit kasserver.com nichts zu tun,
> aber das alte Forum war bei all-inkl.de gehostet und da hab ich öfter
> was von kasserver.com gelesen.
> 
>> HTH
>> Urs
>>
>>
>> Am 25.04.2017 um 11:32 schrieb zs.has...@gmx.de:
>>> Auf http://kasserver.com/news/ heißt es:
>>>
>>> 08.04.2016 08:00 - Unterstützung von Let’s Encrypt-Zertifikaten
>>>
>>> Alle Tarife mit SSL-Erweiterung unterstützen ab sofort die Einbindung von
>>> kostenlosen "Let’s Encrypt"-Zertifikaten. Hierfür gibt es im Punkt "Domain
>>> bzw. Subdomain bearbeiten" unter "SSL Schutz: bearbeiten" einen weiteren
>>> Menüpunkt "Let’s Encrypt". Dort lässt sich mit einem einzigen Klick das
>>> Zertifikat für die jeweilige Sub-/Domain beziehen, welches vom System etwa
>>> 30 Tage vor dem Ablaufen automatisch erneuert wird. Bitte beachten Sie, dass
>>> sich das "Let’s encrypt"-Projekt derzeit noch in der offenen Testphase
>>> befindet.
>>>
>>> Der Einblendung bei deinem Zertifikat zur Folge nutzt dein Hoster
>>> Kasserver.com. Also Gehe auf die Domain-Verwaltung und schau unter SSL nach.
>>> Du musst eigentlich nur ein Häkchen setzten.
>>>
>>>
>>>
>>>
>>> ___
>>> 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
> 

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


Re: New german LilyPond forum | Neues deutschsprachiges LilyPond-Forum

2017-04-25 Thread Malte Meyn


Am 25.04.2017 um 11:36 schrieb Urs Liska:
> So weit *ich* das sehen kann, ist die Seite mit einem Let's
> Encrypt-Zertifikat versehen (s. Anhang).

Richtig. Ich hoste bei Uberspace und habe ein Let’s-Encrypt-Zertifikat
für archive.lilypondforum.de und lilypondforum.de eingerichtet.

> Musst du vielleicht den Browser-Cache leeren oder ein veraltetes, nicht
> mehr verwendetes Zertifikat entfernen?

Scheint so, mein Hoster Uberspace hat mit kasserver.com nichts zu tun,
aber das alte Forum war bei all-inkl.de gehostet und da hab ich öfter
was von kasserver.com gelesen.

> HTH
> Urs
> 
> 
> Am 25.04.2017 um 11:32 schrieb zs.has...@gmx.de:
>> Auf http://kasserver.com/news/ heißt es:
>>
>> 08.04.2016 08:00 - Unterstützung von Let’s Encrypt-Zertifikaten
>>
>> Alle Tarife mit SSL-Erweiterung unterstützen ab sofort die Einbindung von
>> kostenlosen "Let’s Encrypt"-Zertifikaten. Hierfür gibt es im Punkt "Domain
>> bzw. Subdomain bearbeiten" unter "SSL Schutz: bearbeiten" einen weiteren
>> Menüpunkt "Let’s Encrypt". Dort lässt sich mit einem einzigen Klick das
>> Zertifikat für die jeweilige Sub-/Domain beziehen, welches vom System etwa
>> 30 Tage vor dem Ablaufen automatisch erneuert wird. Bitte beachten Sie, dass
>> sich das "Let’s encrypt"-Projekt derzeit noch in der offenen Testphase
>> befindet.
>>
>> Der Einblendung bei deinem Zertifikat zur Folge nutzt dein Hoster
>> Kasserver.com. Also Gehe auf die Domain-Verwaltung und schau unter SSL nach.
>> Du musst eigentlich nur ein Häkchen setzten.
>>
>>
>>
>>
>> ___
>> 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


Re: New german LilyPond forum | Neues deutschsprachiges LilyPond-Forum

2017-04-25 Thread Urs Liska
So weit *ich* das sehen kann, ist die Seite mit einem Let's
Encrypt-Zertifikat versehen (s. Anhang).

Musst du vielleicht den Browser-Cache leeren oder ein veraltetes, nicht
mehr verwendetes Zertifikat entfernen?

HTH
Urs


Am 25.04.2017 um 11:32 schrieb zs.has...@gmx.de:
> Auf http://kasserver.com/news/ heißt es:
>
> 08.04.2016 08:00 - Unterstützung von Let’s Encrypt-Zertifikaten
>
> Alle Tarife mit SSL-Erweiterung unterstützen ab sofort die Einbindung von
> kostenlosen "Let’s Encrypt"-Zertifikaten. Hierfür gibt es im Punkt "Domain
> bzw. Subdomain bearbeiten" unter "SSL Schutz: bearbeiten" einen weiteren
> Menüpunkt "Let’s Encrypt". Dort lässt sich mit einem einzigen Klick das
> Zertifikat für die jeweilige Sub-/Domain beziehen, welches vom System etwa
> 30 Tage vor dem Ablaufen automatisch erneuert wird. Bitte beachten Sie, dass
> sich das "Let’s encrypt"-Projekt derzeit noch in der offenen Testphase
> befindet.
>
> Der Einblendung bei deinem Zertifikat zur Folge nutzt dein Hoster
> Kasserver.com. Also Gehe auf die Domain-Verwaltung und schau unter SSL nach.
> Du musst eigentlich nur ein Häkchen setzten.
>
>
>
>
> ___
> lilypond-user mailing list
> lilypond-user@gnu.org
> https://lists.gnu.org/mailman/listinfo/lilypond-user

-- 
u...@openlilylib.org
https://openlilylib.org
http://lilypondblog.org

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


Re: New german LilyPond forum | Neues deutschsprachiges LilyPond-Forum

2017-04-25 Thread zs.hassia
Einerseits Danke. Aber das https:// Zertifikat wird von meinem Browser nicht
akzeptiert. (Was zu tun ist, weiß ich.) Aber falls die Let’s
Encrypt-Zertifkate bei deinem Hoster möglich sein sollten, würde es dieses
Verhalten nicht geben, dir aber keine Kosten entstehen.


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


Re: New german LilyPond forum | Neues deutschsprachiges LilyPond-Forum

2017-04-25 Thread zs.hassia
Auf http://kasserver.com/news/ heißt es:

08.04.2016 08:00 - Unterstützung von Let’s Encrypt-Zertifikaten

Alle Tarife mit SSL-Erweiterung unterstützen ab sofort die Einbindung von
kostenlosen "Let’s Encrypt"-Zertifikaten. Hierfür gibt es im Punkt "Domain
bzw. Subdomain bearbeiten" unter "SSL Schutz: bearbeiten" einen weiteren
Menüpunkt "Let’s Encrypt". Dort lässt sich mit einem einzigen Klick das
Zertifikat für die jeweilige Sub-/Domain beziehen, welches vom System etwa
30 Tage vor dem Ablaufen automatisch erneuert wird. Bitte beachten Sie, dass
sich das "Let’s encrypt"-Projekt derzeit noch in der offenen Testphase
befindet.

Der Einblendung bei deinem Zertifikat zur Folge nutzt dein Hoster
Kasserver.com. Also Gehe auf die Domain-Verwaltung und schau unter SSL nach.
Du musst eigentlich nur ein Häkchen setzten.




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


New german LilyPond forum | Neues deutschsprachiges LilyPond-Forum

2017-04-25 Thread Malte Meyn
%%% German version (english below)

Liebe Freunde des guten Notensatzes,

nach einer Auszeit von knapp einem Monat gibt es endlich ein neues
deutschsprachiges LilyPond-Forum! Es ist zu finden unter
https://lilypondforum.de.

Die alten Threads sind nicht verloren, sie werden innerhalb der nächsten
Tage unter https://archiv.lilypondforum.de online gehen; ich kümmere
mich gerade noch um die Dateianhänge und die internen Links.

Die Registrierung unter
https://lilypondforum.de/index.php?action=register ist ab sofort offen.

Auf viele weitere Jahre konstruktiven Beisammenseins!

Viele Grüße
Malte

%%% English version

Dear friends of good music engraving,

after a timeout of a month finally there is a new german LilyPond forum!
You can find it at https://lilypondforum.de.

The old threads aren’t lost forever, they’ll become available at
https://archiv.lilypondforum.de.

Registration is open at https://lilypondforum.de/index.php?action=register.

Cheers,
Malte

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


Re: Slur inside tuplet bracket

2017-04-25 Thread Manuela Gößnitzer
Sry, this was wrong, you wanted it the other way round.

\version "2.19.48"
{
  \override TupletBracket.avoid-slur = #'outside
  \shape #'((0 . -1.5) (0 . -1.5) (0 . -1.5) (0 . -1.5)) Slur
  \tuplet 5/4 { c''( bes' fis' d' ges') }
}

Greetings,
Manuela

2017-04-25 8:17 GMT+02:00 Manuela Gößnitzer :

> Hi Andrew,
>
> the code you posted doesn't produce a bracket at all entered to
> lilybin.com
> Try this
>
> \version "2.19.48"
> {
>   \override TupletBracket.avoid-slur = #'outside
>\shape #'((0 . 2) (0 . 2) (0 . 2) (0 . 2)) Slur
>   \tuplet 5/4 { c''( bes' fis' d' ges') }
> }
>
> Greeting,
> Manuela
>
> 2017-04-25 7:25 GMT+02:00 Andrew Bernard :
>
>> H Manuela,
>>
>> I did, naturally. The slur intersects the bracket, and commenting out the
>> override you show produces the same result as having it. So I don't think
>> this is the answer.
>>
>> Andrew
>>
>>
>> On 25 April 2017 at 15:06, Manuela  wrote:
>>
>>> Try this code:
>>>
>>> \version "2.19.48"
>>> {
>>>   \override TupletBracket.avoid-slur = #'outside
>>>   \tuplet 5/4 { c''( bes' fis' d' ges') }
>>> }
>>>
>>>
>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Slur inside tuplet bracket

2017-04-25 Thread Manuela Gößnitzer
Hi Andrew,

the code you posted doesn't produce a bracket at all entered to lilybin.com
Try this

\version "2.19.48"
{
  \override TupletBracket.avoid-slur = #'outside
   \shape #'((0 . 2) (0 . 2) (0 . 2) (0 . 2)) Slur
  \tuplet 5/4 { c''( bes' fis' d' ges') }
}

Greeting,
Manuela

2017-04-25 7:25 GMT+02:00 Andrew Bernard :

> H Manuela,
>
> I did, naturally. The slur intersects the bracket, and commenting out the
> override you show produces the same result as having it. So I don't think
> this is the answer.
>
> Andrew
>
>
> On 25 April 2017 at 15:06, Manuela  wrote:
>
>> Try this code:
>>
>> \version "2.19.48"
>> {
>>   \override TupletBracket.avoid-slur = #'outside
>>   \tuplet 5/4 { c''( bes' fis' d' ges') }
>> }
>>
>>
___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user