I have using LuaLaTeX V: 1.12.0 and how to do automatically missing characters in Math?
My LaTeX:
\documentclass{article}
\tracinglostchars=2 % Warn if the current font does not have a character!
\usepackage[tuenc]{fontspec}
\usepackage{unicode-math}
\defaultfontfeatures{Ligatures=TeX}
\setmainfont[Scale=1.0,SmallCapsFeatures={Renderer=Basic}]{Dejavu Sans}
%%% Math Fonts
\setmathfont{dejavusans.ttf}
\setmathfont{Dejavu Sans}
\setmathrm{FreeSerif.otf}
\setmathfont[range={it}]{FreeSerif.otf}
\title{Math Substitute Fonts}
\begin{document}
\maketitle
\begin{equation}
ż 0 \times 0 \hbox{ and } \mathrm{ż}
\end{equation}
\end{document}
Automatically substitute missing glyph with another in LuaLaTeX
When using \usepackage{newunicodechar} package i have need to declare all the glyps. Can I do the automatic substitution without declaring ё to be an active character?
I have need if missing characters in math automatically need take FreeSerif font.