I need import a partial symbol like this
Asked
Active
Viewed 777 times
0
erika21148
- 293
1 Answers
3
The partial symbol is similar as your picture (I think). I have used \usepackage[lite]{mtpro2} as you have indicated in your request.
\documentclass[a4paper,12pt]{article}
\usepackage[lite]{mtpro2}
\usepackage{newtxmath}
\begin{document}
\[\frac{\partial w}{\partial s}=\frac{\partial w}{\partial x}\frac{\partial x}{\partial s}+\frac{\partial w}{\partial y}\frac{\partial y}{\partial s}\]
\end{document}
For another symbol of partial you can see this my question Modify characters of mt2pro[lite] using Times
ADDENDUM after the comments of the user:
\documentclass[a4paper,12pt]{article}
\usepackage{amsmath}
\usepackage{mathptmx}
\DeclareFontFamily{U}{nxlmi}{}
\DeclareFontSubstitution{U}{nxlmi}{m}{it}
\DeclareFontShape{U}{nxlmi}{m}{it}{
<-6.3> nxlmi05
<6.3-8.6> nxlmi07
<8.6-> nxlmi0
}{}
\DeclareFontShape{U}{nxlmi}{b}{it}{
<-6.3> nxlbmi05
<6.3-8.6> nxlbmi07
<8.6-> nxlbmi0
}{}
\renewcommand{\partial}{{\text{\usefont{U}{nxlmi}{m}{it}\symbol{64}}\mspace{1mu}}}
\begin{document}
\[\frac{\partial w}{\partial s}=\frac{\partial w}{\partial x}\frac{\partial x}{\partial s}+\frac{\partial w}{\partial y}\frac{\partial y}{\partial s}\]
\end{document}
Sebastiano
- 54,118
-
-
There's nothing to import. It is by default. If the question had been: you can change the partial derivative symbol to another font style as you like? The answer is yes. You must call the symbol with a macro as in the link that I reported at the bottom of the page. Obviously you have to install the package
mt2profrom https://ctan.org/pkg/mtp2lite. – Sebastiano Feb 04 '19 at 21:20 -
Yes I need to change only the partial symbol bucause I use the package mathptmx and I don't like the symbol of the partial of this package – erika21148 Feb 04 '19 at 21:31
-



\partialprovides it directly. If you still need to import it, from where do you need to import it? – Steven B. Segletes Feb 04 '19 at 18:39