答案1
以下宏在许多 Unicode Malayalam 字体(例如 Rachana、Gayathri、Manjari)中运行良好。
\documentclass{article}
\usepackage{fontspec}
\usepackage{graphicx}
\def\mal{\fontspec[Script=Malayalam]{Rachana}}
\newcommand*{\Largerdot}{\raisebox{-0.25ex}{\scalebox{1.1}{.}}}
\newcommand{\dotu}[1]{$\stackrel{\Largerdot}{\mbox{{#1}}}$} %% to get the tarastahyi dots
\newcommand{\dotd}[1]{$\stackrel{\mbox{{#1}}}{\Largerdot}$} %% to get the tarastahyi dots
\begin{document}
\dotu{{\mal സ}} \dotu{{\mal രി }} \dotu{{\mal ഗ }} \dotu{{\mal മ }} \dotu{{\mal പ }} \dotu{{\mal ധ }} \dotu{{\mal നി }} ---the note ``{\mal സ രി ഗ മ പ ധ നി }" in \textsl{tāra sthāyi}
\dotd{{\mal സ}} \dotd{{\mal രി }} \dotd{{\mal ഗ }} \dotd{{\mal മ }} \dotd{{\mal പ }} \dotd{{\mal ധ }} \dotd{{\mal നി }} --- the note ``{\mal സ രി ഗ മ പ ധ നി }" in \textsl{mandra sthāyi}\\
\end{document}