使用 Musixtex 进行打击乐基本乐段的多重弹跳滚动

使用 Musixtex 进行打击乐基本乐段的多重弹跳滚动

我需要写出多重弹跳滚动符号(比如带有二分音符的 Z 字母),但我找不到任何符号。下面是供参考的基本代码:

\documentclass[12pt]{article}
\usepackage[T1]{fontenc}
\usepackage{polyglossia}
\setmainlanguage{spanish}
\usepackage{etoolbox}
\usepackage{float} %Paquete para posicionar Tablas
\usepackage{tikz}
\usetikzlibrary{arrows.meta}
\usepackage{amsmath}%Para signo igual
\usepackage{musixtex} 
\input{musixlyr}
\input {musixcho}
\input {musixdat}%fecha
\input {musixfll}
\input {musixgre}%gregoriano
\input {musixper}%percusión
\input {musixppff}
\input {musixstr}
\input {musixvbm}  % experimental vectorized beams
\input {musixdbr} % lineas de barras punteadas, discontinuas y arbitrariamente discontinuas


\begin{document}

%Description of the Multiple Bounce Roll
\begin{music}
    \largemusicsize
    \setlines{1}{0}
    \setclefsymbol{1}{\empty}%
    \nobarnumbers
    \nostartrule
    \startextract
    \Notes \hu a \en $\qquad$ {\Huge{$\Relbar$}}
    \Notes \zcharnote{-13}{\textbf\small \hspace*{0.15cm} L $\;\;$ L $\;\;$ L $\;\;$ L $\;\,$ R $\;\,$ R $\;\,$ R $\;\,$ R } \zcharnote{-9}{\textbf\small \hspace*{-0.01cm} R $\;\,$ R $\;\,$ R $\;\,$ R $\;\,$ L $\;\;$ L $\;\;$ L $\;\;$ L} \Ibbbu0aa7\qb0{aaa}\tbbbu0\qb0a\nbbbu0\qb0{aaa}\tqh0a\en
    \Notes \zcharnote{-13}{\textbf\small \hspace*{0.15cm} L $\;\;$ L $\;\;$ L $\;\;$ L $\;\,$ R $\;\,$ R $\;\,$ R $\;\,$ R } \zcharnote{-9}{\textbf\small \hspace*{-0.01cm} R $\;\,$ R $\;\,$ R $\;\,$ R $\;\,$ L $\;\;$ L $\;\;$ L $\;\;$ L} \Ibbbu0aa7\qb0{aaa}\tbbbu0\qb0a\nbbbu0\qb0{aaa}\tqh0a\en
    \zendextract
\end{music}   


\end{document}

预期输出应该是:

预期输出

感谢致敬。

答案1

我认为您正在寻找命令\zcn{<note>}{<text>},它<note>确定垂直位置并且<text>可以是任何内容,就您而言,\zcn{f}{\textbf{\textit{z}}}看起来是正确的。

在此处输入图片描述

此命令\zcn会将文本溢出到右侧。还有\lcn\ccn分别表示左侧和中间。

\Notes  \zhu a \zcn{f}{\textbf{\textit{z}}} \en

相关内容