我需要用 MusiXTeX 代码写入此图像:
我的问题是将\unbkt
\ovbkt
具有相同注释的命令组合在一起。我的代码是:
\documentclass{article}[12]
\usepackage{musixtex}
\thispagestyle{empty}
\begin{document}
\begin{music}
\normalmusicsize
\nobarnumbers
\startextract
\NOTEs
\ovbkt n34 \unbkt n11 \wh{e h}
\ccharnote{12}{$8^{a}$}\wh{i l}
\en
\endextract
\end{music}
\end{document}
太感谢了。
答案1
您没有更改开头的注释(两次都是“n”)。我以各种方式更改了您的代码。结果如下:
\documentclass{article}[12]
\usepackage{musixtex}
\thispagestyle{empty}
\begin{document}
\begin{music}
\normalmusicsize
\nobarnumbers
\startextract
\NOTEs
\unbkt b11\wh{e h}\bsk\ovbkt n24\sk
\ccharnote{12}{$8^{a}$}\wh{i l}
\en
\endextract
\startextract
\NOTEs
\unbkt b11\wh e\ovbkt n24\wh h
\ccharnote{12}{$8^{a}$}\wh{i l}
\en
\endextract
\startextract
\NOTEs
\unbkt b11\ovbkt n34\wh{e h}
\ccharnote{12}{$8^{a}$}\wh{i l}
\en
\endextract
\end{music}
\end{document}