Re: Automatically numbering "instrument name"?

2017-08-10 Thread Manuela Gößnitzer
4:18 AM, Malte Meyn <lilyp...@maltemeyn.de> wrote: > >> >> >> Am 09.08.2017 um 06:34 schrieb Manuela Gößnitzer: >> >>> Do you mean something like this? >>> >>> #(define score-number 0) %% insert in first score >>> >>> #

Re: Automatically numbering "instrument name"?

2017-08-08 Thread Manuela Gößnitzer
Do you mean something like this? #(define score-number 0) %% insert in first score #(set! score-number (1+ score-number)) \new PianoStaff \with { instrumentName = \markup { #(number->string score-number) "." } } \relative c'' { c } 2017-08-08 23:33 GMT+02:00 Sam Bivens

Re: Alignment problem

2017-08-08 Thread Manuela Gößnitzer
What about \relative b, { \key g \major \clef "bass" \time 3/4 \textLengthOn d4 _\markup{\italic "Fine"} \fermata g4- \markup { \dynamic "f" } b4 } 2017-08-07 15:18 GMT+02:00 Phil Holmes : > It does, but only if you attach the markup to the note. As it turns out,

Re: Alignment problem

2017-08-07 Thread Manuela Gößnitzer
A solution comes in mind but you have to assign dynamic and text to the same note: \version "2.19.48" dynamictext = #(define-event-function (text) (markup?) (if (string? text) (let* ((underscores-replaced (string-map (lambda (x) (if (eq? x #\_) #\space x))

Re: ChordMarkup context

2017-07-04 Thread Manuela Gößnitzer
Thank you for this really nice piece of code! 2017-07-05 1:09 GMT+02:00 Thomas Morley : > Hi all, > > in the long thread starting at > http://lilypond.1069038.n5.nabble.com/Chords-in-LilyPond-td203294.html > a method to have a more direct way to typeset chords was

Re: tupletbracket on staff

2017-06-26 Thread Manuela Gößnitzer
I do not understand exactly what you mean by "inside the staff", maybe you want this: \override TupletBracket.direction = #UP ... or \tupletUp 2017-06-26 21:51 GMT+02:00 Neil Thornock : > I'm engraving a piece with a very large staff consisting mostly of white > space.

Re: bar number interference

2017-06-25 Thread Manuela Gößnitzer
I use this construction: \version "2.18.2" melody = { %\override Score.BarNumber.break-visibility = ##(#t #t #t) \time 5/4 b2.( b4 ) r4 | } harmonies = \chordmode { b2.:min fis2:min7 | } \layout { \context { \Score \remove "Bar_number_engraver" } \context { \Staff

Re: transpose range

2017-06-25 Thread Manuela Gößnitzer
You need to split the music expression, I cannot think of a different solution because \transpose c e, \music would be too low. 2017-06-25 10:29 GMT+02:00 Gianmaria Lari : > The result of a transpose operation sometimes generate notes that are too > high (or too low)

Re: How to hide fingering in the output

2017-06-24 Thread Manuela Gößnitzer
You have the right idea already ;-) The Fingering stencil is part of the Voice context Try \override Fingering.stencil = ##f (I hope this syntax works with 2.18) 2017-06-25 2:52 GMT+02:00 Ivanov Dmitry : > This code will output "c" note with number "3" above it. I learned, >

Re: How to move markup horizontally

2017-06-24 Thread Manuela Gößnitzer
I do not recommand the usage of extra-offset (this was discussed in the German forum some time ago), try this instead \version "2.19.58" \relative c'' { d4_\markup { \line { \null \hspace #-7 R.\dynamic { p } } } } 2017-06-25 2:38 GMT+02:00 Andrew Bernard

Re: Titling problem

2017-06-19 Thread Manuela Gößnitzer
My first reply was to Ralph only, sry Check out the LSR: http://lsr.di.unimi.it/LSR/Item?id=368 http://lsr.di.unimi.it/LSR/Item?id=467 2017-06-20 5:52 GMT+02:00 Ralph Palmer : > Hi - > > I cannot figure out how to do some custom titling. > > I am trying to

Re: coloring notes according harmonic function

2017-06-19 Thread Manuela Gößnitzer
There are two snippets in the repository which demonstrate how to color the noteheads http://lsr.di.unimi.it/LSR/Item?id=572 http://lsr.di.unimi.it/LSR/Item?id=897 2017-06-18 23:23 GMT+02:00 Gianmaria Lari : > On 18 June 2017 at 19:47, Christopher R. Maden

Re: Humble question - Forced line breack

2017-06-16 Thread Manuela Gößnitzer
Hi Frederico, what you gave us is not a minimal working (compilable) example. I suggest something like this \version "2.19.52" \language "deutsch" RH= \relative c'' { \time 4/4 \key c \major \repeat unfold 20 c4 } LH = \relative c { \clef bass \key c \major \repeat unfold 20 c }

Re: How to write anti-accent (breve)

2017-06-15 Thread Manuela Gößnitzer
In the German Lilypond forum (now available in the archive) someone figured out a solution, here a comparison of both solutions \version "2.19.56" soft = -\tweak stencil #(lambda (grob) (grob-interpret-markup grob (if (eq? UP (ly:grob-property grob 'direction)) #{

Re: Hal Leonard fretboard style

2017-06-15 Thread Manuela Gößnitzer
Does this link help you? http://leighverlag.blogspot.co.at/2015/12/mimicking-real-book-look.html Greetinx, Manuela 2017-06-13 17:14 GMT+02:00 Kieren MacMillan : > Hi all, > > Before I reinvent this particular wheel… > > Has anyone worked up a stylesheet which

Re: ly Source for examples on the LP Homepage

2017-05-29 Thread Manuela Gößnitzer
Thanks for the link, I think it would be a good idea to add it on the homepage, greetings, Manuela 2017-05-29 15:46 GMT+02:00 Kieren MacMillan : > Hi all, > > > Il giorno lun 29 mag 2017 alle 13:41, Martin Tarenskeen < > m.tarensk...@zonnet.nl> ha scritto: > >> In

ly Source for examples on the LP Homepage

2017-05-29 Thread Manuela Gößnitzer
Hi all, I was looking for the Lilypond source for the example gallery http://lilypond.org/examples.html (which I thought that could be really enlightening sometimes) and did not find any. I searched Github too, with no result. Are the sources for these examples on the LP-website or somewhere

Re: Permission for music

2017-05-24 Thread Manuela Gößnitzer
c, and we're all very > proud of the results it produces. If you ever want to start writing your > *own* music, the people here are incredibly helpful and friendly, and will > gladly (and generously) donate their time to help you. Feel free to drop by > and ask questions any time. > &

Re: Permission for music

2017-05-24 Thread Manuela Gößnitzer
Which website would that be? AFAIK this here is a mailing list, there is no website with music sheets. Greetings Manuela 2017-05-24 2:40 GMT+02:00 Sarah Fosdick : > Hi, I am a piano student, and I have a piano test coming up. I know the > song "Comptine d'un autre été

Re: Lilypond newbie can't compile

2017-05-20 Thread Manuela Gößnitzer
. Anyway, I think William's problem is solved now, :-) greetings Manuela 2017-05-20 10:11 GMT+02:00 Richard Shann <rich...@rshann.plus.com>: > On Sat, 2017-05-20 at 10:05 +0200, Manuela Gößnitzer wrote: > > Hi Andrew, > > > > > > well, I think the Lilyp

Re: How exactly does "\transpose" work?

2017-05-20 Thread Manuela Gößnitzer
I tried this code \version "2.19.42" someNotes= { c d e f a } theNotes = \relative c' \transpose c d' { { \someNotes } } #'() \theNotes \transpose e f \theNotes which produced nothing unexpected on my system even when transposed again. Could you add an example for notes? Greetings,

Re: Lilypond newbie can't compile

2017-05-20 Thread Manuela Gößnitzer
ers don't know that. > > The question that arises in my mind is why the OP is using Windows 7. :-) > > Andrew > > > > On 20 May 2017 at 15:55, Manuela Gößnitzer <pressephotogra...@gmail.com> > wrote: > >> Is there any particular reason why you use 2.18

Re: Lilypond newbie can't compile

2017-05-19 Thread Manuela Gößnitzer
Is there any particular reason why you use 2.18 and not 2.19? Don't be afraid of the term "unstable version", it works fine :-). I would advise you to use Frescobaldi http://lilypond.org/easier-editing.html as editor, this is a great help especially for new users. Greetings Manuela 2017-05-19

Re: Function which return the chords of the degrees of a mode

2017-05-18 Thread Manuela Gößnitzer
If have done some programing some time ago, a function that produces diatonic chords from a scale. Check it out, maybe you can combine it with Thomas' code. \version "2.19.37" \language "deutsch" %% create diatonic chords from a scale %% enter the steps of the scale as lily music %% and chose

Re: \magnifyMusic omits unison notes in \partcombine?

2017-04-29 Thread Manuela Gößnitzer
What is the pair for? When I omit it, everything works fine, check it out \version "2.19.56" one = { a'2 f' } two = { f'2 f' } \partcombine \magnifyMusic 1.2 \one \magnifyMusic 1.2 \two Greetings, Manuela 2017-04-28 0:02 GMT+02:00 Karlin High : > A songwriter looked at my

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

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

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

Underlining Chordnames in chordmode

2017-04-09 Thread Manuela Gößnitzer
In standard Accordion bass notation counterbasses are notated underlined. In the German Lilypond forum users figured out a solution for this task. I added the German chord notation. Here is the code \version "2.19.54" \language "english" #(define ((chord-name->german-markup-text-alteration

German User Forum down

2017-03-31 Thread Manuela Gößnitzer
Hi, does anybody know anything about the German forum? The page is down since yesterday, the site says "End of life". I am really sad because this forum is very valuable for me, greetings Manuela ___ lilypond-user mailing list lilypond-user@gnu.org