逗号或其他标点符号的替代符号是什么\cdot
?我想将分数列表中的逗号符号提升到分数行。逗号在分数旁边使用时放在下方。
答案1
您可以使用将其移动到您想要的位置。以下是内联和\raisebox
的比较。根据@GonzaloMedina 的建议,我提供了两个版本,每个版本在逗号周围提供略有不同的间距:\frac
displaystyle
\dfrac
- 一种使用
\mathbin
(间距类似\cdot
)和 - 另一种使用
\mathpunct
(间距更像标点符号)
代码:
\documentclass{article}
\usepackage{amsmath}
\newcommand{\CommaBin}{\mathbin{\raisebox{0.5ex}{,}}}
\newcommand{\CommaPunct}{\mathpunct{\raisebox{0.5ex}{,}}}
\begin{document}
\verb|\mathbin|: $\frac{1}{2} \CommaBin \frac{3}{4} \CommaBin \dfrac{1}{2} \CommaBin \dfrac{3}{4}$
\bigskip
\verb|\mathpunct|: $\frac{1}{2} \CommaPunct \frac{3}{4} \CommaPunct \dfrac{1}{2} \CommaPunct \dfrac{3}{4}$
\end{document}