用 tex 写出高音谱号?

用 tex 写出高音谱号?

如何用 Tex 书写高音符号? http://en.wikipedia.org/wiki/Clef

答案1

您可能会发现musixtex包很有用。在文档中,您可以找到有关如何使用此包的更复杂的示例。这里只有两个小例子。

第一的

\documentclass{article}
\usepackage{musixtex}

\begin{document}
\begin{music}
\trebleclef 
\end{music}
\end{document}

第一个结果

第一个结果

第二

\documentclass{article}
\usepackage{musixtex}

\begin{document}
\begin{music}
\startextract
\Notes\ibbbu0h0\qb0e\tbbbu0\qb0e\tbbu0\qb0e\tbu0\qb0e\enotes
\zendextract
\end{music}
\end{document}

第二个结果

第二个结果

编辑:请注意,这\begin{music} \end{music}不是必需的,我只是推荐它,因为它可以为您的代码提供更多的结构,从而使其更具可读性。

玩得开心!

相关内容