I used the technique described by the commentator "Martin H" here to include an Inkscape graphic into my LaTex document.
Now I want to force all the text of the image to look exactly like in math mode, i.e. \mathnormal, because that the image include parameters names etc.
I'm aware of the option to delimit the text with \(\), so that it would look like I need. But it seems like a last-resort option.
So I read here that the default math font is Latin Modern Math.
I had tried to force that font on the text:
{\setmainfont{Latin Modern Math}
\input{drawing.pdf_tex}
}
But it didn't look like the default math font. Why's that?
Edit #1:
A minimal working example:
The Tex file:
\documentclass{article}
%\usepackage{amsmath}
\usepackage{mathtools}
\usepackage{color}
\usepackage{graphicx}
\usepackage{fontspec}
\begin{document}
\pagestyle{empty}
Hello World!
This \(x^2\) equation
{\setmainfont{Latin Modern Math}
\input{drawing.pdf_tex}
}
\end{document}
The file drawing.pdf_tex:
%% Creator: Inkscape inkscape 0.48.4, www.inkscape.org
%% PDF/EPS/PS + LaTeX output extension by Johan Engelen, 2010
%% Accompanies image file 'drawing.pdf' (pdf, eps, ps)
%%
%% To include the image in your LaTeX document, write
%% \input{<filename>.pdf_tex}
%% instead of
%% \includegraphics{<filename>.pdf}
%% To scale the image, write
%% \def\svgwidth{<desired width>}
%% \input{<filename>.pdf_tex}
%% instead of
%% \includegraphics[width=<desired width>]{<filename>.pdf}
%%
%% Images with a different path to the parent latex file can
%% be accessed with the `import' package (which may need to be
%% installed) using
%% \usepackage{import}
%% in the preamble, and then including the image with
%% \import{<path to file>}{<filename>.pdf_tex}
%% Alternatively, one can specify
%% \graphicspath{{<path to file>/}}
%%
%% For more information, please see info/svg-inkscape on CTAN:
%% http://tug.ctan.org/tex-archive/info/svg-inkscape
%%
\begingroup%
\makeatletter%
\providecommand\color[2][]{%
\errmessage{(Inkscape) Color is used for the text in Inkscape, but the package 'color.sty' is not loaded}%
\renewcommand\color[2][]{}%
}%
\providecommand\transparent[1]{%
\errmessage{(Inkscape) Transparency is used (non-zero) for the text in Inkscape, but the package 'transparent.sty' is not loaded}%
\renewcommand\transparent[1]{}%
}%
\providecommand\rotatebox[2]{#2}%
\ifx\svgwidth\undefined%
\setlength{\unitlength}{80.4138855bp}%
\ifx\svgscale\undefined%
\relax%
\else%
\setlength{\unitlength}{\unitlength * \real{\svgscale}}%
\fi%
\else%
\setlength{\unitlength}{\svgwidth}%
\fi%
\global\let\svgwidth\undefined%
\global\let\svgscale\undefined%
\makeatother%
\begin{picture}(1,0.90155469)%
\put(0,0){\includegraphics[width=\unitlength]{drawing.pdf}}%
\put(0.32238442,0.5481293){\makebox(0,0)[lb]{\smash{v0}}}%
\end{picture}%
\endgroup%
Notice that the line:
\put(0.32238442,0.5481293){\makebox(0,0)[lb]{\smash{v0}}}%
has the parameter name v0.
The drawing file is at: http://www.filedropper.com/drawing_3
(SE network doesn't allow uploading a file which isn't an image, so I uploaded it to a different website.)
Edit #2:
Following "Mico" guidance, I modified to code of the main LaTex file to be:
\documentclass{article}
\usepackage{mathtools}
\usepackage{color}
\usepackage{graphicx}
\usepackage{fontspec}
\begin{document}
Example of "v0" in math mode: \(v_0\).\\
But in the drawing it looks otherwise:\\
\input drawing
\end{document}
Also, changed the name of the file drawing.pdf_tex to be drawing.tex.
Then I compiled the main LaTex file with lualatex (normally I use xelatex, does it make a difference?).
But the text of math mode looks different than the text of the image, see:

BTW, having:
{\setmainfont{Latin Modern Math}
\input drawing
}
instead of simply:
{
\input drawing
}
doesn't make a difference - it yields the same results as in the image above.

{\setmainfont{Latin Modern Math}\itseries{\input{...}}}? We will need to see an MWE in order to help. – LaRiFaRi Mar 05 '15 at 13:39! Undefined control sequence. l.14 {\setmainfont{Latin Modern Math}\itseries. Plz see my edit. – Dor Mar 05 '15 at 13:56