I have managed to create an OTF font for my signature using the FontForge font editor. The signature is mapped to a single printable character on the keyboard. I am aware that I need to rely on the package fontspec in order to use the signature font in a LaTeX document. However, I am not able to figure out the command that I should use to insert the signature in a LaTeX document.
Could someone help we figure out what I should do, given that the signature font is different from the main font that I could use in any document.
Kind regards to the TeX/LaTeX Stack Exchange community.

O. (The idea of creating fonts is new to me. I hope I understand what you mean by slot.) I need to add that I am able to use the signature font successfully inLibreOfficedocuments where the size of the font is allowed to range from 6 to 96. – user24098 Apr 25 '17 at 17:22\includegraphics[height=50pt]{sig.pdf}– David Carlisle Apr 25 '17 at 18:57XeLaTeXandLuaLaTeXare not able to use it directly for some reason which I have yet to establish. However, I do find your suggestion of converting it to pdf viaLibreOfficea very good idea. I'll adopt the idea. Thanks once more. – user24098 Apr 25 '17 at 19:10\usepackage{fontspec}and\newfontface\yourcommand{yourfont}then in the document body,{\yourfont some text}does the job. If your font has italic and bold as well, then\newfontfamilygets you there. – Apr 25 '17 at 19:26