I want to write:
When I put
\textit${x_{min}}$ It also error
\textit(x_{min}} is an error as the content of \textit is text mode so can not have _
\textit$x_{min}$ is \textit{$}x_{min}$ with a lone $ as argument to \textit
the usual markup would be $x_{\min}$ or if you really do want min in italics $x_{\mathit{min}}$
If it is not mathematics then \textit{x\textsubscript{min}} is another possibility.
\textit{x\textsubscript{min}} :-) min :-) :-), however in principle there is no difference, so you are right :-) x_min ???
$x_{min}$should work for the latteritalic. so I added in \textit{x_{min}}$x_{\min}$instead of what you're currently doing. At best, you're need\textit{x\textsubscript{min}}._for a subscript only works in math mode. Hence the error message when you use it in text mode.