Talking about music using lilypond-book and LaTeX.
It's going great. Now I'm trying to use lilypond snippet simply to display the \flat glyph.
I want to show you what
\begin{lilypond}
\paper {
left-margin = .1\in
right-margin = .1\in
}
\new ChordNames \with {
\override ChordName #'font-size = #-3
} {bes}
\end{lilypond} and
\begin{lilypond}
\paper {
left-margin = .1\in
right-margin = .1\in
}
\new ChordNames \with {
\override ChordName #'font-size = #-3
} {bis}
\end{lilypond}
What it looks like is this:
The \paper directive doesn't seem to be doing anything.
There must be an easier way.


B$\flat$andB$\sharp$? – cgnieder Aug 30 '16 at 17:07$switches to math mode and back (this is very basic LaTeX knowledge!). Per default\flatand\sharpcan be used only in math mode. You can leave them away and see for yourself what happens. – cgnieder Aug 30 '16 at 17:13\usepackage[chords]{leadsheets}and then\chordname{B#}and\chordname{Bb}(this also correctly transforms stuff like\chordname{Eb7(#9)}. – cgnieder Aug 30 '16 at 17:16