> Message: 1
> Date: Thu, 1 Oct 2015 15:33:51 +0200
> From: Urs Liska <u...@openlilylib.org>
> To: lilypond-user <lilypond-user@gnu.org>
> Subject: Stacked letters in markup
> Message-ID: <560d363f.9010...@openlilylib.org>
> Content-Type: text/plain; charset=utf-8
> 
> Sorry, I have to ask this *without* looking for a solution before. Just
> don't have any time left this time:
> 
> How can I overlay letters in lyrics? I want to print two "D"s that
> overlap, one left-top, the other bottom-right. The default symbol for a
> double dominant.
> 
How about:

\version "2.19.26"

music = \relative c'' { c d e f }
Lyrics = \lyricmode {
    \markup {
       \raise #.5 D
       \hspace #-1.8
       \raise #-.5 D
    }
}

\score {
    \new Staff \music
    \addlyrics \Lyrics
}


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

Reply via email to