0

I want to write the partial symbol like the picture

I need import a partial symbol like this

1 Answers1

3

The partial symbol is similar as your picture (I think). I have used \usepackage[lite]{mtpro2} as you have indicated in your request.

enter image description here

\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:

enter image description here

\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
  • And how import it from the package? – erika21148 Feb 04 '19 at 21:15
  • 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 mt2pro from 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
  • @erika21148 Now is it perfect? :-) – Sebastiano Feb 04 '19 at 21:42