The plus sign + or minus sign - in LaTeX is too big for me. I want to scale down these binary operation symbol at once, so that whenever I type +, it corresponds to a more little + symbol. How can I do this? And what method to scale down the symbol is better?
(By the way, I'm using mtpro2 now.)
My code:
\documentclass[12pt,a4paper,openany,fleqn]{book}
\usepackage[no-math]{xeCJK}
\setmainfont{TeX Gyre Termes Bold}
\usepackage[subscriptcorrection,slantedGreek,nofontinfo,zswash,mtphrb]{mtpro2}
\usepackage{bm}
\setCJKmainfont{cwTeX Q Ming} %just a Chinese font
\everymath{\displaystyle}
\begin{document}
results:\\
$a+b$\\
$\bm{\mathrm{a}}+\bm{\mathrm{b}}$\\
$\mbf {a+b}$ %MathTimePro2 original command
\end{document}



\usepackage{newtxtext,newtxmath}, with$(\mathbf{a}+\mathbf{b})$, I get a decidedly smaller plus sign – egreg Feb 14 '17 at 18:32mtpro2, in this case). It wouldn't be too difficult to use the plus sign fromnewtxmath, but I'm not sure it's the right thing to do. Anyway, remove\everymath{\displaystyle}: it's one of the worst TeX hints around. And using a boldface font as main font is another very bad choice for your readers. – egreg Feb 14 '17 at 18:56\everymath{\displaystyle}? I used it simply because I personally like the fraction in inline mode not too short as default. – Eric Feb 14 '17 at 19:05\\to break lines outside special contexts (e.g.tabular,array). – cfr Feb 14 '17 at 23:52