interligne dans un markup

Bonjour à tous,
J’ai fait ça :
\markup {
\center-column {
\musicglyph #"scripts.ufermata"
\italic "fin"
}
Mais je trouve qu’il y a trop d’interligne entre le signe et le mot. Comment puis-je le diminuer ?
Merci d’avance.
L.C.

Loïc A. Chahine wrote

Bonjour à tous,
J’ai fait ça :
\markup {
\center-column {
\musicglyph #"scripts.ufermata"
\italic "fin"
}
}
Mais je trouve qu’il y a trop d’interligne entre le signe et le mot.

essaye

\markup {
  \override #'(baseline-skip . .7)

}

Eluze

···

--
View this message in context: http://lilypond-french-users.1298960.n2.nabble.com/interligne-dans-un-markup-tp7580271p7580274.html
Sent from the LilyPond French Users mailing list archive at Nabble.com.

Merci. Malheureusement ça ne change rien…
L.C.

···

Le 12/08/13 00:02, Eluze a écrit :

essaye

\markup {
   \override #'(baseline-skip . .7)

}

Eluze

Loïc A. Chahine wrote

···

Le 12/08/13 00:02, Eluze a écrit :

essaye

\markup {
   \override #'(baseline-skip . .7)

}

Eluze

Merci. Malheureusement ça ne change rien…

chez moi ça change - peux-tu envoyer le code complet!?

Eluze

--
View this message in context: http://lilypond-french-users.1298960.n2.nabble.com/interligne-dans-un-markup-tp7580271p7580280.html
Sent from the LilyPond French Users mailing list archive at Nabble.com.

Ça va être difficile, c’est diviser en plusieurs fichiers. En tout cas c'est dans une fonction. Avec cet échantillon j’obtiens bien que ça marche pas :

···

Le 12/08/13 11:17, Eluze a écrit :

chez moi ça change - peux-tu envoyer le code complet!?

fermfin =

\markup {

\center-column {

\override #'(baseline-skip . .7)

\line { \musicglyph #"scripts.ufermata" }

\line { \italic fin }

}

}

\new Staff {

\relative c' {

\time 3/4

c4 d d, |

g8^\fermfin a b a g fis |

e2 fis4 |

}

}

Loïc A. Chahine wrote

Avec cet échantillon j’obtiens bien que ça marche pas :

fermfin =

\markup {

\center-column {

\override #'(baseline-skip . .7)

\line { \musicglyph #"scripts.ufermata" }

l'ordre des commandes markup est important:

\markup {
  \override #'(baseline-skip . .7)
  \center-column {

Eluze

···

--
View this message in context: http://lilypond-french-users.1298960.n2.nabble.com/interligne-dans-un-markup-tp7580271p7580284.html
Sent from the LilyPond French Users mailing list archive at Nabble.com.

Merci ! Effectivement, dans ce sens, ça fonctionne. Par contre les proportions sont parfois bizarres, mais je suis parvenu à un résultat correct :
fermfin =
\markup {
   \halign #-0.5
   \override #'(baseline-skip . 2)
     \center-column {
       \line { \musicglyph #"scripts.ufermata" }
       \line { \italic fin }
   }
}

L.C.

···

Le 12/08/13 11:59, Eluze a écrit :

l'ordre des commandes markup est important:

\markup {
   \override #'(baseline-skip . .7)
   \center-column {