Hi Dick,
Am 26.07.2020 um 15:15 schrieb [email protected]:
I an writing text in LibreOffice about metronome-markings. So, I have
for instance to replace "...quarternote=60..." by "...<musical
symbol>=60...", etc.
Can I use the Lilypond extension in LibreOffice to achieve such purposes?
If you want to make sure it looks exactly as in a LilyPond score, you
can create a short score and hide everything except the tempo indication.
Create an OLy snippet based on the "School demo" template and just
copy-paste the following lines into the code field:
% -------------------------
{
\new RhythmicStaff
\tempo 4=60
}
\layout {
\context {
\RhythmicStaff
\override Clef.stencil = ##f
\override TimeSignature.stencil = ##f
\override StaffSymbol.stencil = ##f
}
}
% -------------------------
This should do the trick.
Cheers,
Klaus