I tried the solutions given in How do I remove the little × that shows up in the frontend when typing? and Getting rid of the horrible Times x in Mathematica 12.3.
They work for standard expressions: no little x shows up any more. But for Inactivated expressions the little x still shows up. How to remove the little x in this case as well?
Sin[2*x]
Inactivate[Sin[2*x]]
it looks like Inactivate prevents formatting settings to be applied as well. So I need a way to override this.
Using V 13.0 on windows 10


Inactive[Sin][2 x]– rmw Dec 27 '21 at 13:55Inactivate[Integrate[Sin[2 x], x]]TheSin[2*x]was a simple example. – Nasser Dec 27 '21 at 14:02Inactivate[Integrate[Sin[2 x], x], Integrate], which does not show the x – MarcoB Dec 27 '21 at 14:06Inactivate[Sin[2 x], Sin]orInactivate[Integrate[Sin[2 x], x], Sin | Integrate]orInactivate[Integrate[Sin[2 x], x], Sin]Happy New Year! – rmw Dec 27 '21 at 14:10Activate[Inactivate[Integrate[Sin[2 x], x]], Times]. – Domen Dec 27 '21 at 14:11Inactivate[Sin[2*x], Except[Times]]? – chuy Dec 27 '21 at 15:13Preferences | Appearance | Formatting | Multiplicationyou can select the symbol used from{Space, Center Dot, *, x}– Bob Hanlon Dec 27 '21 at 15:45