I use LaTeX and lilypond-book to create a hymn sheet. I increased the font size with KOMA script to increase the readability. Now the font sizes in the LaTeX document does not match the embedded lyrics from Lilypond. What can I do that Lilypond re-uses LaTeX' font size?
(Probably the problem is more difficult than I thought: Lilypond uses different fonts like truetype or type1 and not LaTeX' Computer Modern. Somewhat solved in comment)
Code with manually adjusted sizes that somehow match:
\documentclass[a4paper,fontsize=15pt]{scrartcl}
\usepackage{tgschola}
\addtokomafont{disposition}{\rmfamily}
\begin{document}
\begin{lilypond}
\version "2.12.3"
\paper { indent = 0 }
Melodie = \relative c' {
\clef treble
\time 2/4
\omit Staff.TimeSignature
c2 d2 e2 g2
\bar "|."
}
Text = \lyricmode {
Lo -- rem ip -- sum
}
\score{
<<
\new Voice = "eins" {
\autoBeamOff
\Melodie
}
\new Lyrics \lyricsto "eins" \Text
>>
\layout {
\context {
\Lyrics
\override LyricText #'font-size = #3
%\override LyricText #'font-name = #"Computer Modern"
}
}
}
\end{lilypond}
2. Lorem ipsum dolor sit amet, / consetetur sadipscing elitr
\end{document}
The - in Lo -- rem is smaller than the letters. How do I adjust that?

lilypondautomatically scales fonts according to the global staff size. Therefore, it seems that you’ll need to adjust the staff size until the lyrics look right to you. – Thérèse Jul 02 '14 at 07:49lilypondis New Century Schoolbook, and you can use a font much like it for ordinaryLaTeXtext by addingusepackage{tgschola}to your preamble. (See the documentation oftex-gyrefor the history of this font.) – Thérèse Jul 02 '14 at 21:10tgscholaThat's a huge improvement. – usr1234567 Jul 03 '14 at 03:58