MusixTeX 16 号卡洪鼓不显示上梁

MusixTeX 16 号卡洪鼓不显示上梁

我想制作简单的Cajon节奏音符,这就是我想要的

我想要这样的十六分音符

我在第 3 小节下面写了同样的东西,但是遗漏了一些东西。

但我的 3 号酒吧看起来不一样

\documentclass{article}
\usepackage{musixtex}
\input{musixper} % percussion additions (percussion note heads, etc.)

\begin{document}

\begin{music}
\instrumentnumber{1}
\generalmeter{\meterfrac44}
\setclefsymbol1\drumclef
\parindent0pt\startpiece
\leftrepeat
\notes \ibu1m0\qb1f\doqb1n\qb1j\tbu1\doqb1n \en
\notes \ibu1m0\qb1f\doqb1n\qb1j\tbu1\doqb1n \en
\bar
\notes \ibbu1m0\qb1f\doqb1n\doqb1n\tbbu1\doqb1n \en
\notes \ibbu1m0\qb1j\doqb1n\doqb1n\tbbu1\doqb1n \en
\notes \ibbu1m0\qb1f\doqb1n\doqb1n\tbbu1\doqb1n \en
\notes \ibbu1m0\qb1j\doqb1n\doqb1n\tbbu1\doqb1n \en
\bar
\notes\Qqbbu fhge\Qqbbl jhgi\en
\notes\Qqbbu fhge\Qqbbl jhgi\en
\setrightrepeat\endpiece
\end{music}

\end{document}

使用 3-passing 编译

pdflatex example.tex
musixflx example
pdflatex example.tex
pdflatex example.tex

更新解决方案

根据答案和评论,问题是关于结束一根梁,文档说:

在对连接到该梁的最后一个间距注释进行编码之前,必须声明该梁的终止。

因此十六分音符以 开头,\ibbu{n}{p}{s}以 结尾\tbu{n}

\documentclass{article}
\usepackage{musixtex}
\input{musixper} % percussion additions (percussion note heads, etc.)

\begin{document}

\begin{music}
\instrumentnumber{1}
\generalmeter{\meterfrac44}
\setclefsymbol1\drumclef
\parindent0pt\startpiece
\leftrepeat
\notes \ibu1m0\qb1f\doqb1n\qb1j\tbu1\doqb1n \en
\notes \ibu1m0\qb1f\doqb1n\qb1j\tbu1\doqb1n \en
\bar
\notes \ibbu1m0\qb1f\doqb1n\doqb1n\tbu1\doqb1n \en
\notes \ibbu1m0\qb1j\doqb1n\doqb1n\tbu1\doqb1n \en
\notes \ibbu1m0\qb1f\doqb1n\doqb1n\tbu1\doqb1n \en
\notes \ibbu1m0\qb1j\doqb1n\doqb1n\tbu1\doqb1n \en
\bar
\notes\Qqbbu fhge\Qqbbl jhgi\en
\notes\Qqbbu fhge\Qqbbl jhgi\en
\setrightrepeat\endpiece
\end{music}

\end{document}

在此处输入图片描述

答案1

musixtex 需要三次传递才能正确分隔音乐。将文件名更改为 something.ltx 并执行

musixtex 某物.ltx

一切正常。请阅读 musixdoc.pdf 以获取文档。

相关内容