如何改变“音乐作品”字符的位置?

如何改变“音乐作品”字符的位置?

我想在 Latex 文档中的普通文本中显示一些音符。这是代码片段:

\documentclass{article}
\usepackage{graphicx} % Required for inserting images
\usepackage{musicography}

\begin{document}

Simple time signatures, such as $2/4$ or $3/4$, signify a binary beat subdivision (\eg{} in $3/4$ the beat is given by the quarter note, which is divisible in 2 eighth notes \musQuarter = \musEighth + \musEighth)

%\musQuarterDotted = \musEighth + \musEighth + \musEighth 

\end{document}

输出结果如下: 在此处输入图片描述

我怎样才能将“=”放在四分音符和十六分音符之间的更中央位置,并将“+”也同样放在两个十六分音符之间的中心位置?

注意:我必须使用musicography我正在使用的pdflatex并且不能改变这一点(例如xelatex,在这种情况下我可以选择该liliglpyh包)。

答案1

TeX 会吞噬这些命令后的空格。请改写为\musQuarter{} = \musEighth{} + \musEighth{}

相关内容