3

I have tried to follow the instructions in

Importing single symbol from MnSymbol

in order to load a single symbol from the FdSymbol list without having to load the entire package (due to conflicting symbols), but I have been unsuccessful in adapting them to the FdSymbol package. I would like to add the \rightharpoonup symbol (since the FdSymbol package provides a wider version of \rightharpoonup that the standard font).

I would appreciate any help in providing this single symbol from the FdSymbol package.

Henri Menke
  • 109,596

1 Answers1

6
\documentclass{article}

\DeclareFontFamily{U}{FdSymbolC}{}
\DeclareFontShape{U}{FdSymbolC}{m}{n}{<-> s * FdSymbolC-Book}{}
\DeclareSymbolFont{fdarrows}{U}{FdSymbolC}{m}{n}
\DeclareMathSymbol{\rightharpoonup}{\mathrel}{fdarrows}{"40}

\begin{document}

$\rightharpoonup$

\end{document}

enter image description here

If you need the bold version as well, add

\DeclareFontShape{U}{FdSymbolC}{b}{n}{<-> s * FdSymbolC-Medium}{}
\SetSymbolFont{fdarrows}{bold}{U}{FdSymbolC}{b}{n}
Henri Menke
  • 109,596