I'm new user and really need your help. I want to fix the size and position of a "math symbol". For example, I want to scale and adjust vertical position of symbol "+". According to information on internet, I try this way and it worked.
\documentclass{article}
\usepackage{graphicx}
\usepackage{amsmath}
\def\plus{\raisebox{0.13\height}{\scalebox{0.95}{$\mspace{4mu}+\mspace{4mu}$}}}
\begin{document}
\noindent
$1+2+3\\
1\plus 2\plus 3$
\end{document}
However, I wonder that how I can re-define the symbol "+" directly in the system without using syntax <\plus>.
I try to find more information, it leads me to "catcode". But I cannot apply it because of no knowledge about the syntax and structure.

