I am a beginner to Latex using pdflatex. I am trying to change some of the math symbols to a different family. In my case, I want to change xi to XITS math. Using XITS with pdflatex I could achieve this simply using stix package. However, in my document, I am using symbols from the other fonts, for example, MnSymbol. When I am using both, it results in error, \UndeclareTextCommand from stix package. The working model I am using is
\documentclass{report}
\usepackage{amsmath}
\usepackage{MnSymbol}
\usepackage{stix}
\begin{document}
$\xi$
\end{document}
Using the above code without MnSymbol, I will get all the symbols changed to stix. However, I would like to use only some of the symbols from stix. I could find some discussion about choosing specific symbol from a specific font family. Being a beginner, I could not understand the solutions to the extent that I can implement to my case.
One of the simple solution I could find is https://tex.stackexchange.com/a/324207/180603. However, this code could not run using pdflatex!
What is the simplest method by which the symbol can be changed?