Is it possible to use Google-Noto-sans-CJK-JP font in TexMaths?

In TexStudio (Linux/Fedora 38), the following code produces a correct result:

\documentclass{article}
\usepackage{amssymb}
\usepackage{mathtools,array,booktabs} 
% \usepackage{luatexja-fontspec}
\usepackage[noto,fontspec,match]{luatexja-preset}
\usepackage{cancel}
\usepackage[sfdefault]{noto}
\renewcommand*\familydefault{\sfdefault}
\begin{document}
	\sffamily
	\[ 
	\setlength\arraycolsep{0pt}
	\renewcommand\arraystretch{1}
	\left.
	\begin{array}{rr}
		\left.\begin{array}{l} 
			\text{V} \\ 
			\text{い-adj}
		\end{array}\right\} & 
		\multicolumn{1}{l}{\text{Jisho}} \\
		\addlinespace
		\left.\begin{array}{l} 
			\text{な-adj} \\ 
			\text{N}\textsubscript{1}
		\end{array}\right\} &
		\begin{array}{l} 
			\text{Jisho} \\
			\sim\cancel{\text{だ}}\to\sim\text{な} 
		\end{array}
	\end{array}
	\right\}  
	\text{のは N}\textsubscript{2}\text{です}
	\]
\end{document}  

Schermafdruk van 2023-10-25 21-50-06

I copied the same code to TexMaths and in the TexMaths System Configuration, I changed the font to Noto Sans CJK JP. But here this code produces this result (In TexMaths I edited the preamble and selected LuaLatex as compiler):

Schermafdruk van 2023-10-25 21-54-09
Is it possible to use Google-noto fonts in TexMaths?

Ben

Make a search with keywords “math font”. There are related questions solved. Regards.

At some point, while searching for a solution, I saw the word dvisgm. I don’t know what this word stands for but I remembered having seen this word in the TexMath System config. After installing dvisgm (sudo dnf install texlive-dvisvgm -y) I could add /usr/bin/dvisvgm to the path.
The result is not perfect but is acceptable. Probably the result can be improved after some finetuning in luatex-ja.

dvisVgm (you omitted a letter) converts from classic “device-independend” format created by TeX to “scaleable vector graphics” wich are understood by software outside the TeX-world.