Re: adding footnote to markup on invisible measures

2018-08-20 Thread Pierre Perol-Schneider
Here's a workaround:

\version "2.19.80"

\markup {
  \null
  \footnote
  \null
  \italic \concat { "*" \hspace #.3 "Das Cello erzählt eine Geschichte ganz
unabhängig von den anderen Stimmen" }
}

\relative c {
  \time 2/4
  \hideNotes
  \omit Staff.TimeSignature |
  es'''2^\markup {
"un poco misterioso*"
  } |
  \omit Staff.BarLine
  \repeat unfold 19 { es2 }
  \undo \omit Staff.BarLine
  \unHideNotes
  \undo \omit Staff.TimeSignature
}

HTH, cheers,
Pierre

Le lun. 20 août 2018 à 21:13, N. Andrew Walsh  a
écrit :

> Hi List,
>
> for "reasons" I have a passage that should have blank staves with no
> barlines, rests, clefs, etc. However, at the start of the section is an
> expressive mark, which should itself have a footnote. What I have thus far
> is as follows:
>
> \version "2.19.80"
>
> \relative c {
>   \time 2/4
>   \hideNotes \omit Staff.TimeSignature | es'''2^\markup { "un poco"
> \auto-footnote "misterioso" "Das Cello erzählt eine Geschichte ganz
> unabhängig von den anderen Stimmen" } | \omit Staff.BarLine \repeat unfold
> 19 { es2 } \undo \omit Staff.BarLine \unHideNotes \undo \omit
> Staff.TimeSignature
>
> }
>
> This gets the invisible-measure bit, and the expressive mark, but the
> footnote is not appearing. Is there some instruction I need to give for the
> footnote marks and text to appear? Or is my syntax wrong?
>
> Thanks for the help!
>
> A
> ___
> 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


adding footnote to markup on invisible measures

2018-08-20 Thread N. Andrew Walsh
Hi List,

for "reasons" I have a passage that should have blank staves with no
barlines, rests, clefs, etc. However, at the start of the section is an
expressive mark, which should itself have a footnote. What I have thus far
is as follows:

\version "2.19.80"

\relative c {
  \time 2/4
  \hideNotes \omit Staff.TimeSignature | es'''2^\markup { "un poco"
\auto-footnote "misterioso" "Das Cello erzählt eine Geschichte ganz
unabhängig von den anderen Stimmen" } | \omit Staff.BarLine \repeat unfold
19 { es2 } \undo \omit Staff.BarLine \unHideNotes \undo \omit
Staff.TimeSignature

}

This gets the invisible-measure bit, and the expressive mark, but the
footnote is not appearing. Is there some instruction I need to give for the
footnote marks and text to appear? Or is my syntax wrong?

Thanks for the help!

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


Re: Bar number under beam

2018-08-20 Thread damianlegassick
Thanks Aaron

I can work with this

Damian

> On 18 Aug 2018, at 18:16, Aaron Hill  wrote:
> 
> On 2018-08-18 09:25, damianlegassick wrote:
>> I want bar 15 the same hight as bar 14
> 
> {
>  \version "2.19.82"
>  \set Score.timing = ##f
>  \autoBeamOff
>  \voiceOne
>  \override BarNumber.outside-staff-priority = #0
>  \override Stem.outside-staff-priority = #1
>  \override Beam.outside-staff-priority = #1
>  \override Score.BarNumber.break-visibility = ##(#t #t #t)
>  \set Score.currentBarNumber = #14 \bar ""
>  \override Beam.positions = #'(8 . 8)
>  c''8[
>  \bar "|"
>  \once \override Score.BarNumber.self-alignment-X = #0.33
>  \set Score.currentBarNumber = #15
>  d''8]
> }
> 
> It's probably a little bit of a hack, but changing the 
> `outside-staff-priority` of stems and beams so that bar numbers have priority 
> allows the number to stick close to the staff.  However, then there is an 
> overlap issue with the stem.  Changing `self-alignment-X` to be closer to 
> centered seems to help a bit.
> 
> 
> -- Aaron Hill
> 
> ___
> 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: align dynamic with text

2018-08-20 Thread Noeck
Dear Ben,

how about this version. It combines some of the already proposed features:

- mixes dynamic text symbols and text
- behaves like a dynamic script (DynamicText)
- centers the symbol on the note head


\version "2.19.80"

% combine dynamic as markup that looks like what you want it to look like
markupText = \markup { f \normal-text \italic "stretto" }

% turn this markup (i.e. text) into a dynamic text like \f or \pp
dynamicText = #(make-dynamic-script markupText)

% self-align it to the anchor point such that the f is under the note head
fstretto = -\tweak DynamicText.self-alignment-X #-0.8 \dynamicText

{
  c'\fstretto c' c' c'
}


Best,
Joram

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