我尝试使用 musixtex 制作一些包含两种乐器的音乐片段。但这两种乐器之间存在一些对齐问题。
以下是一个例子:
\documentclass{standalone}
\usepackage{musixtex}
\begin{document}
\begin{music}
\parindent10mm
\instrumentnumber{1} % a single instrument
\setstaffs1{2} % with two staffs
\setclef{1}{60} % clef de fa (6) en 1, clef de sol (0) en 2
\startextract % starting real score
\NOtes \zcharnote{-6}{IV} \hl M|\zhu{f h}\hu j\en
\NOtes \zcharnote{-6}{V} \hl N|\zhu{d g}\hu i\en
\NOtes \zcharnote{-6}{I} \hu J|\zhu{e g}\hu j\en
\setdoublebar
\endextract
\end{music}
\end{document}
我们可以看到,低音与高音不一致。如何才能更好地对齐?
答案1
\hl
删除和之前的空格\hu
。
\documentclass{standalone}
\usepackage{musixtex}
\begin{document}
\begin{music}
\parindent10mm
\instrumentnumber{1} % a single instrument
\setstaffs1{2} % with two staffs
\setclef{1}{60} % clef de fa (6) en 1, clef de sol (0) en 2
\startextract % starting real score
\NOtes \zcharnote{-6}{IV}\hl M|\zhu{f h}\hu j\enotes
\NOtes \zcharnote{-6}{V}\hl N|\zhu{d g}\hu i\enotes
\NOtes \zcharnote{-6}{I}\hu J|\zhu{e g}\hu j\enotes
\setdoublebar
\endextract
\end{music}
\end{document}