答案1
有lilypond
文件类似
\new RhythmicStaff \with {\remove "Staff_symbol_engraver"} {
\relative {
\time 1/4 \hide Staff.TimeSignature
\tuplet 3/2 {a8' 8 8} 8 8 \tuplet 3/2 {r8 8 8} 8 8 4 }
\addlyrics {
Eye less in Ga za at the mill with slaves}}
我可以制作类似的例子
据说有包装lyluatex
lylipond 代码可以插入到.tex
文件中并用 进行编译LuaLaTeX
。但我还不能让它在我的系统上运行。
答案2
以下是 lyluatex 的 MWE:
\documentclass{article}
\usepackage{libertine}
\usepackage[pass-fonts]{lyluatex}
\begin{document}
\begin{lilypond}
\new RhythmicStaff \with {\remove "Staff_symbol_engraver"} {
\relative {
\time 1/4 \hide Staff.TimeSignature
\tuplet 3/2 {a'8 8 8} 8 8 \tuplet 3/2 {r8 8 8} 8 8 4 }
\addlyrics {
Eye less in Ga za at the mill with slaves}}
\end{lilypond}
\end{document}
看这里了解有关如何使用它的详细信息。